1cbab65da8
55d8e3dbc0
@ -521,7 +521,7 @@ Splice: It takes three parameters:Starting position, number of times to be remov
```js
const numbers = [1, 2, 3, 4, 5]
numbers.splice()
numbers.splice(0)
console.log(numbers) // -> remove all items
```