#web-development
Read more stories on Hashnode
Articles with this tag
When building web applications, managing data on the client side is essential for tasks such as authentication, user preferences, and state...
I made a full stack multi-user web app Classroom using MERN stack, where principal (admin) can register new users that is teachers and students, then...
An environment variable is a value set outside of a program, usually by the operating system or a service. It consists of a name and a value, and...
1] DOM Document object model is an interface that allows a programming language to manipulate the structure, style and the content of the website. It...
In JavaScript, export and export default is used to export values from a module, making them accessible to other modules. The difference lies in how...
What are Props? Props (short for properties) are a way to pass data from a parent component to its child components in React. Props are used to...