#javascript
Read more stories on Hashnode
Articles with this tag
In JavaScript, Map is a built-in object that provides an easy way to store and manipulate data in key/value pairs. Map vs. Object The main difference...
In JavaScript, a set is an object that allows you to store unique values of any type. It is a collection of values where each value occurs only...
In JavaScript, a Proxy object is an object that wraps another object (target) and intercepts the fundamental operations of the target object. The...
NPM is the world's largest software repository. It is the package manager for the node.js platform. NPM has a powerful CLI that developers use to...
SWC is a fast and efficient compiler and bundler written in Rust. SWC can be used for minification, bundling, compiling and more. It is similar to...
The global structuredClone() can be used to create a deep copy of a given value. Example In this example, we clone an object. After cloning, changes...