#javascript
Read more stories on Hashnode
Articles with this tag
The shortcomings of node.js ยท Bun is a brand new javascript runtime designed to be a "drop-in replacement for Node.js". The 3 pillars of Bun according to...
Javascript handles values that don't or shouldn't exist by the use of undefined, not defined & null keywords. These may seem similar, but there are...
It's both! Let's find out how. Pass by value Whenever a function is called, if the value of the variable is passed directly as the parameter, then the...
slice() and splice() are both methods on javascript arrays! slice() slice() copies the items from the original array and returns the elements the...
As you may already know, A React component can return only 1 node. So if we had multiple elements to return, then we have to simply wrap a <div>...
What is hoisting? The default behavior of the javascript interpreter is to move variable and function declarations to the top. This behavior is called...