#frontend-development
Read more stories on Hashnode
Articles with this tag
Context API allows us to manage the state easily in React App. What do I mean by that? Before I explain how to work with React Context API, I want to...
JSON(JavaScript Object Notation) is very useful when you work with data. The first thing we should know is how to convert an object to JSON and a JSON...
intex.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width,...
Map() is one of the very useful functions. It creates a new array. The function (which will be passing in the map function) is going to apply to...
The form is the most common way to get data from a user. You can get the value of the input easily by using useRef() of React Hooks. Form.jsx import...
Before Destructuring assignment Object const person = { name: 'Grace', age: 18, }; const name = person.name; const age =...