I have a need to add or prepend elements at the beginning of an array.
For example, if my array looks like below:
[23, 45, 12, 67]
Using ES6 destructuring: (avoiding mutation off the original array)
const newArr = [item, ...oldArr]