10 most ordinary react concepts

Naim Morshed
1 min readMay 7, 2021

1 # What is React?

Starting from basic. React is a javascript library, not a framework. The purpose of the framework is different. Let’s just stick into React. React is served as a specific purpose

2 # What is DOM?

DOM refers to Document Object Model. DOM is the manipulation of HTML document pages using JavaScipt. DOM provides manipulation of every single node in HTML. A question might arise in your mind, what the heck is a node? Every HTML attribute, element, comment, text is called node. The document itself is a node.

3 # What is React hooks?

React Hooks are a pre-defined class introduced in the React 16.8 version. It is similar to a function. Functions are served for a specific purpose. There are certainly two rules to follow during the declaration of React Hooks. First and foremost, Hooks should be declared at the top level of React functions and should not be called from inside functions, nested functions, and loops. Call React Hooks from react function components rather than regular JavaScript functions. In React there exist

--

--

Naim Morshed

Call me Naim your programmer friend who is always looking for solving challenging task and adapt with new technologies.