#javascript
Read more stories on Hashnode
Articles with this tag
APIs for storing data on Web Browser ยท Storing data on the client(web browser) is useful to improve the performance of a website. Web browsers are having...
There are two ways of copying one variable into another. Shallow Copy Deep Copy Shallow Copy When a reference variable(object) is copied into...
What is a Promise? A promise is a Javascript object that holds the result of a future outcome. Since Javascript is synchronous and executes each line...
Introduction The Object.freeze() method is used to freeze the properties of an object. By using Object.freeze() the object does not allow adding a new...