- 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.
|
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
|
```js
|
||||||
const drop = (arr, n = 1) => arr.slice(n);
|
const drop = (arr, n = 1) => arr.slice(n);
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Returns a new array with `n` elements removed from the right.
|
Returns a new array with `n` elements removed from the right.
|
||||||
|
|
||||||
Use `Array.prototype.slice()` to slice the remove the specified number of elements from the right.
|
Use `Array.prototype.slice()` to remove the specified number of elements from the right.
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const dropRight = (arr, n = 1) => arr.slice(0, -n);
|
const dropRight = (arr, n = 1) => arr.slice(0, -n);
|
||||||
|
|||||||
Reference in New Issue
Block a user