Important Array Methods
Array.push() and Array.unshift()
These take one or more arguments, the element(s) you want to add
They RETURN the length of the modified array
PUSH adds elements to the END of an array
UNSHIFT adds them to the beginning of the array
const name...
romilse.hashnode.dev2 min read