js array methods cheat sheet code example
Example 1: list of javascript cheat sheet
list.push(X)
list.unshift(X)
list.splice(2, 0, X)
Example 2: list of javascript cheat sheet
list.splice(list.indexOf(REF)+1, 0, NEW))
Example 3: list of javascript cheat sheet
.every(n => ...) => Boolean
.some(n => ..) => Boolean
Example 4: list of javascript cheat sheet
.filter(n => ...) => array
Example 5: list of javascript cheat sheet
list = [a,b,c,d,e]
Example 6: list of javascript cheat sheet
.map(n => ...)
.reduce((total, n) => total)
.reduceRight(...)