Demystifying Prototypal inheritance in JavaScript
Introduction
We all write this code quite often when working with arrays.
var arr = [1,2,3];
arr.push(50);
//[1,2,3,50]
But where did this .push() come from or for a matter of fact where do .map() .filter() .reduce() actually come from. As we all k...
munish.hashnode.dev5 min read
Ashish Kumar
Web Stuff
It was really good explanation.. You have explained it using nice examples .