Skip to content

Instantly share code, notes, and snippets.

View RohitLuthra19's full-sized avatar
🎯
Focusing

Rohit Luthra RohitLuthra19

🎯
Focusing
View GitHub Profile
@alexhawkins
alexhawkins / nativeJavaScript.js
Last active July 27, 2024 04:48
Implementation of Native JavaScript Methods (forEach, Map, Filter, Reduce, Every, Some)
'use strict';
/*****************NATIVE forEACH*********************/
Array.prototype.myEach = function(callback) {
for (var i = 0; i < this.length; i++)
callback(this[i], i, this);
};
//tests