JS - Which array method to use? Array built-in object documentation To mutate original array Add to original .push() (end) .unshift() (start) Remove from original .pop() (end) .shift() (start)