React

What is React?

What is React? React is a javascript library which is used for building UI(User Interfaces). Why it is library and not a framework. Because the main focus of it is…
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…