Skip to content

Instantly share code, notes, and snippets.

@toni783
toni783 / jsbin.nedodad.js
Last active January 27, 2021 14:13
JS Bin - JavaScript: From Fundamentals to Functional JS, v2
/*const suspects = ["Miss Scarlet", "Colonel Mustard", "Mr. White"];*/
// suspects.forEach(el => console.log(el));
/*
_.each = function(list, callback) {
if(Array.isArray(list)){
for(let i = 0; i < list.length; i++){
callback(list[i], i, list);