LBLomesh Badheinlomesshh.hashnode.dev·May 22, 2024 · 2 min readPolyfills in javascriptWhat exactly is Polyfill ? Polyfill is a piece of javascript code that is used to provide or fill in some functionality that one browser might support but another browser might not support. Let's take an example of arrow functions, they are basically...00
LBLomesh Badheinlomesshh.hashnode.dev·Apr 27, 2024 · 3 min readEvent Delegation in javascriptWhat is Event Delegation ? We can say that Event Delegation is a method of handling events for multiple HTML elements via a single event listener on their parent element. It is only possible because of how events propagate up to the hierarchy on the ...00
LBLomesh Badheinlomesshh.hashnode.dev·Apr 15, 2024 · 4 min readPromises and its methodsWhat is promise ? Promises were introduced to javascript in ES6. before promises we were using callbacks to manage asynchronous operations but while using them we may face the issue of callback hell and again code is also not properly readable so to ...00
LBLomesh Badheinlomesshh.hashnode.dev·Mar 29, 2024 · 2 min readArrow FunctionsA function is a block of code, self-contained, that can be defined once and run any time you want. A function can optionally accept parameters and returns the value. If you have been using JavaScript in past then you are probably familiar with this t...00
LBLomesh Badheinlomesshh.hashnode.dev·Mar 17, 2024 · 3 min readES6 Destructuring in ReactES6 is more popularly known as ECMA script which is a scripting language. this language was created to standardize Javascript language. ES6 is the 6th version of ECMA. ES6 is used to enable client-side languages and is becoming one of the most popula...00