馃殌 CYBER WEEK SALE: 50% OFF on JavaScript Fundamentals 馃挭

JavaScript Interview Question #45: 小urrency formatting in JS

How to format a string into a local currency in JavaScript? What鈥檚 the output? . . . . . . . . . . . . . . . ....

March 9, 2021 路 2 min 路 Coderslang Master

JavaScript Interview Question #44: Number vs BigInt in JS

What happens if we add an n suffix to a regular number in JavaScript? What鈥檚 the output? . . . . . . . . . . . . ....

March 6, 2021 路 1 min 路 Coderslang Master

JavaScript, synchronizing Promises with async/await

Promises are a very handy tool for organizing asynchronous code. But the human brain is much more accustomed to synchronous operations. We鈥檇 much rather prefer to do something, wait, and then continue instead of having to handle inherent complexity of asynchronous programming....

March 6, 2021 路 2 min 路 Coderslang Master

JSON Tutorial for JavaScript and Node.js

One of the most popular formats for exchanging data between backend and frontend is JSON which stands for JavaScript Object Notation. It is very similar to what regular JavaScript objects look like, but it also has its own quirks....

March 5, 2021 路 4 min 路 Coderslang Master

Node.js, Express Middleware and External Access

Great, we already have a production server and have done some tasks to better understand how it works. Now let鈥檚 take a look at middleware - one of the most important concepts of Express....

March 4, 2021 路 4 min 路 Coderslang Master

Create your first Node.js server with Express backend

In the last lecture, you saw the server-side analogy of the Hello, world that you wrote as your first task in VSCode. Our program was able to process the request and return a response, which was displayed by the browser....

March 3, 2021 路 3 min 路 Coderslang Master

JavaScript Interview Question #43: Object.toString and Array.toString

What鈥檚 the difference between Object.toString and Array.toString in JavaScript? What鈥檚 the output? . . . . . . . . . . . . . . . . . A regular behavior of the JavaScript function Object....

March 3, 2021 路 1 min 路 Coderslang Master

JavaScript Interview Question #42: How Math.max works in JS

How exactly Math.max works in JavaScript? What鈥檚 the output? . . . . . . . . . . . . . . . . . In JavaScript, the function Math....

February 28, 2021 路 1 min 路 Coderslang Master

JavaScript Interview Question #41: Increasing MAX_SAFE_INTEGER

True or false? What appears in the console? . . . . . . . . . . . . . . . . . JavaScript uses the double precision floating point numbers even to represent integers....

February 25, 2021 路 1 min 路 Coderslang Master

JS Interview #40: What is the type of `undefined` in JS?

What鈥檚 the output? . . . . . . . . . . . . . . . . . In JavaScript, the typeof operator always returns a string. So, even though typeof undefined evaluates to undefined, it鈥檚 a string and not the primitive undefined value....

February 22, 2021 路 1 min 路 Coderslang Master