code sample
//this is a pretty cool code
function doCoolStuff(things, other) {
for(var i=0; i<other.length; i++) {
console.log("doing thing " + i + things[i]);
}
}
//don't you think?
/* yes, i really like it */
function doMoreStuff(more) {
//this is where the real action happens
more.map((x)=> {
console.log(x);
});
}
function doMoreStuff(more) {
//this is where the real action happens
more.map((x)=> {
console.log(x);
});
}
function doMoreStuff(more) {
//this is where the real action happens
more.map((x)=> {
console.log(x);
});
}