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