How to Insert an Item in the Middle of an Array?
We can easily insert items at the start (unshift) and end (push) of an array.
But, what about the middle? ๐ค
Ta-da! splice!
splice is a method that allows you to insert and delete items in an array.
It takes three arguments:
The index you want to st...
williamma.hashnode.dev2 min read