What is reconciliation in React js ?
The virtual DOM (VDOM) is a programming concept where an ideal, or “virtual”, representation of a UI is kept in memory and synced with the “real” DOM by a library…
interview questions
The virtual DOM (VDOM) is a programming concept where an ideal, or “virtual”, representation of a UI is kept in memory and synced with the “real” DOM by a library…
The inherit CSS keyword causes the element to take the computed value of the property from its parent element. It can be applied to any CSS property, including the CSS shorthand…
Semantic elements = elements with a meaning. A semantic element clearly describes its meaning to both the browser and the developer.
If a boolean attribute is present, it is always true. Boolean attributes include autofocus, inert, checked, disabled, required, reversed, allowfullscreen, default, loop, autoplay, controls, muted, readonly, multiple, and selected Boolean values can either be omitted, set to an empty string, or be the name of the…
How to Receive Query String Value in JavaScript ?
Always declare JavaScript variables with var,let, or const. Var , let, const all three are use to create variable in javascript but there are following differences. Var Let Const Must…
1. What is Redux. 2. What is Core Concepts in Redux. 3. What are the Principles Of Redux. 4. What is Action in Redux. 5. What is Reducer in Redux.