Skip to content

Instantly share code, notes, and snippets.

View saroj990's full-sized avatar
🤖
Building

Saroj Sasamal saroj990

🤖
Building
  • SAIEN
  • Bhubaneswar
View GitHub Profile
@alexhawkins
alexhawkins / nativeJavaScript.js
Last active June 8, 2026 07:14
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