What are the HTML5 APIs you know
Here are the major features introduced in ES6 (ECMAScript 2015) Geolocation API – Where am I right now?…
Read MoreWhat are the new features came with ES6 standards
Here are the major features introduced in ES6 (ECMAScript 2015) Variables and Scope let and const – Block-scoped…
Read MoreHow does inheritance happens in Javascript
Inheritance Explanation Prototype-Based Inheritance JavaScript uses prototypes rather than classical inheritance. Every object has an internal link to…
Read MoreArrow & Normal function in JavaScript
Arrow & Normal(Annonymous) function Explanation Let me explain the differences between arrow functions and normal (regular) functions with…
Read MoreExplain about Deep & Shallow copy
Deep & Shallow Copy Explanation In JavaScript, objects and arrays are stored by reference, not by value. So…
Read MoreExplain Apply function in JavaScript
Apply() explanation Let’s explain apply() in JavaScript the right way — starting from the real problem, why it…
Read More