Skip to content

Instantly share code, notes, and snippets.

View glenncogar's full-sized avatar

Glenn Cogar glenncogar

View GitHub Profile
// arguments object - no longer bound with arrow functions
const add = (a, b) => {
// console.log(arguments);
return a + b;
};
console.log(add(55, 1, 1001));