IIFE

What is IIFE in Javascript?

What is IIFE? IIFE stands for Immediately Invoked Function Expression. Its a Javascript function which runs as soon as it defined.  It is Also called as anonymous function which means…
Prototypal Inheritance in Javascript

Prototypal Inheritance in Javascript

Prototypal Inheritance In javascript  prototypal inheritance means an object getting the access to the properties and methods of another objects.As we know arrays[] and functions() are basically object{} in javascript.So…
Promise in Javascript

Promise in Javascript

What is Promise in Javascript? In terms of javascript promise is nothing but an Object. In general terms promise is similar to real life promise. For example Suppose A and…