Blogs

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 More
What 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 More
How 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 More
Arrow & Normal function in JavaScript

Arrow & Normal(Annonymous) function Explanation Let me explain the differences between arrow functions and normal (regular) functions with…

Read More
Explain about Deep & Shallow copy

Deep & Shallow Copy Explanation In JavaScript, objects and arrays are stored by reference, not by value. So…

Read More
Explain Apply function in JavaScript

Apply() explanation Let’s explain apply() in JavaScript the right way — starting from the real problem, why it…

Read More