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 splice we insert an element to an array at the begnning:
splice
arrName.splice( 0, 0, 'newName1' );