Skip to content

Instantly share code, notes, and snippets.

View mokshchadha's full-sized avatar

Moksh Rai Chadha mokshchadha

View GitHub Profile
@mokshchadha
mokshchadha / gist:fe7f3a415f49dace6e8830a0dd202001
Created October 26, 2023 05:13
create map filter from scratch
function mapArray(arr,cb){
let res = [];
for(const e of arr){
res.push(cb(e));
}
return res;
}
function filterArray(arr, cb){
let res = [];