JavaScript Interview Question #45: 小urrency formatting in JS
How to format a string into a local currency in JavaScript? What鈥檚 the output? . . . . . . . . . . . . . . . ....
How to format a string into a local currency in JavaScript? What鈥檚 the output? . . . . . . . . . . . . . . . ....
What happens if we add an n suffix to a regular number in JavaScript? What鈥檚 the output? . . . . . . . . . . . . ....
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....
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....
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....
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....
What鈥檚 the difference between Object.toString and Array.toString in JavaScript? What鈥檚 the output? . . . . . . . . . . . . . . . . . A regular behavior of the JavaScript function Object....
How exactly Math.max works in JavaScript? What鈥檚 the output? . . . . . . . . . . . . . . . . . In JavaScript, the function Math....
True or false? What appears in the console? . . . . . . . . . . . . . . . . . JavaScript uses the double precision floating point numbers even to represent integers....
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....