MSMukul Sharmainblogs.mukuldev.in·May 9 · 7 min readHow React Virtual DOM works under the HoodReact never touches the Real DOM directly on every state change. Instead, it builds a lightweight JavaScript copy of the DOM (Virtual DOM), compares the new version against the old one (diffing/reconc00
MSMukul Sharmainblogs.mukuldev.in·Apr 28 · 2 min readSetting Up Your First Node.js Application Node.js is an open-source, cross-platform JavaScript runtime environment that allows developers to execute JavaScript code outside of a web browser, primarily for building server-side and network appl00
MSMukul Sharmainblogs.mukuldev.in·Apr 28 · 3 min readThe new Keyword in JavaScriptThe new operator lets developers create an instance of a user-defined object type or of one of the built-in object types that has a constructor function. What Does the new Keyword Actually Do? When a 00
MSMukul Sharmainblogs.mukuldev.in·Apr 26 · 4 min readCallbacks in JavaScript: Why They Exist Hello guys, in this article we are going to learn about the callback functions in the js, what are they , why we use them and the problems we face while using them. Callback function A callback functi00
MSMukul Sharmainblogs.mukuldev.in·Apr 23 · 3 min readArray Flatten in JavaScriptHi everyone , in this article we are going to explore the flat method of the Array instance, the nested arrays , how flatterning the array is useful and lot more. What are the nested arrays Nested arr00