- Fixing typo, the terms slice and removed were used at same place
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
|
||||
Returns a new array with `n` elements removed from the left.
|
||||
|
||||
Use `Array.prototype.slice()` to slice the remove the specified number of elements from the left.
|
||||
Use `Array.prototype.slice()` to remove the specified number of elements from the left.
|
||||
|
||||
```js
|
||||
const drop = (arr, n = 1) => arr.slice(n);
|
||||
|
||||
Reference in New Issue
Block a user