showing results for - "remove an item by index position using splice"
Gavin
21 Oct 2017
1let removedItem = fruits.splice(pos, 1) // this is how to remove an item
2
3// ["Strawberry", "Mango"]
4