#javascript
Read more stories on Hashnode
Articles with this tag
Just like an array, a set is used for storing multiple elements, however, the elements in a set must be unique. The elements can be of any data type...
JavaScript Map introduced in ES6 is similar to objects in JavaScript. A map is used to store elements in a key/value pair. Unlike objects, maps can...
In JavaScript, numbers are stored as 64-bit floating points. Bitwise operators in JavaScript operate on 32-bit operands. Before performing a bitwise...