Authentication is the most important part of any web app and creating your own authentication can be a tedious process, where we need to ensure proper...
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...