How does the JavaScript splice() method work?
The splice() method will remove items from an array. It will return the removed values and it will mutate the original array.
It receives two parameters:
The starting index to remove.
How many items will be removed from the starting position.
For e...
blog.mariobarcelo.dev1 min read