Blog | Bhagya Mudgal

Blog | Bhagya Mudgal

Follow
homebadgesnewsletter
Tag

Web Development

#web-development

More content

Read more stories on Hashnode


Articles with this tag

Introduction to JSX

Jan 3, 20232 min read 50 views

What is JSX? JSX is a syntax extension for JavaScript that allows you to write HTML-like code in your JavaScript files. It was designed to make it...

Introduction to JSX

What is useRef hook in React?

Dec 30, 20222 min read 53 views

The useRef hook is a useful tool for managing references to DOM elements in your React components. To understand what the useRef hook does, it's...

What is useRef hook in React?

What is useContext hook in React?

Dec 29, 20222 min read 86 views

The useContext hook in React is a way for a functional component to access the context of a parent component, without the need to pass the context...

What is useContext hook in React?

What is useCallback hook in React?

Dec 28, 20223 min read 86 views

The useCallback hook is a useful tool in React for optimizing the performance of your components by avoiding the creation of unnecessary functions. It...

What is useCallback hook in React?

What is useMemo hook in React?

Dec 27, 20222 min read 68 views

The useMemo hook is a useful tool in React for optimizing the performance of your components by avoiding expensive computations that do not need to be...

What is useMemo hook in React?

What is useReducer hook in React?

Dec 26, 20222 min read 79 views

The useReducer hook is a powerful tool in React that allows you to manage state within your components. It is similar to the useState hook, but it is...

What is useReducer hook in React?