- AVirtual DOM
- BDOM
- CElements
- DComponents
For creating dynamic UI, DOM was never an optimized solution. Consider a page displaying a list containing 10 items and one is getting updated. While performing update, DOM will rebuild the entire list making it work 10 times more than what is necessary. This inefficiency can be overcome using Virtual DOM.
Virtual DOM is an abstract, lightweight copy of DOM. It can be changed as and when we want and then can be saved to the real DOM. Whenever a change occurs, Virtual DOM efficiently rerenders the DOM. It is much faster than DOM.
Virtual DOM (Document Object Model) has the same properties as a real DOM object.
React postulated the idea of Virtual DOM. It is commonly used in PayPal
, Apple
and Facebook
.
Components
Components
– easier to maintain larger apps.JSX
– an optional feature of React that is a JavaScript syntax extension.inline templating
and JSX
that might be awkward to some developers.
React is mainly for building User interfaces.
Compilation
React uses JSX
instead of the regular JavaScript.
key-value
State
is an object that determines how the component renders and behaves. It is the place where the data comes from. It allows you to create components that are dynamic and interactive.
State
can be defined as key-value pair defined in each component.this.state
-- Updated on event calls.render
function will be called again to re-render the change in state using this.setState
.
False
It is not mandatory to use JSX
with React
. But React
would be elegant if JSX
is used.
JSX
is an inline markup
that looks like HTML that gets transformed to JavaScript.const element = <h1>Hello, world!</h1>;
The syntax is intended to be used by preprocessors such as Babel to transform HTML-like text into standard JavaScript objects.
Optimization
React uses JSX
instead of the regular JavaScript.
this.state
State
is an object that determines how the component renders and behaves. It is the place where the data comes from. It allows you to create components that are dynamic and interactive.
State
can be defined as key-value pair defined in each component.this.state
-- Updated on event calls.render
function will be called again to re-render the change in state using this.setState
.
this.setState
State
is an object that determines how the component renders and behaves. It is the place where the data comes from. It allows you to create components that are dynamic and interactive.
State
can be defined as key-value pair defined in each component.this.state
-- Updated on event calls.render
function will be called again to re-render the change in state using this.setState
.You have unsaved changes or are in the middle of a quiz. If you leave, your progress might be lost. Select option for all questions.