- Fixing typo, the terms slice and removed were used at same place

This commit is contained in:
vaibhavmande
2019-04-15 10:33:56 +05:30
parent 4350413674
commit cf2593d7f4
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -2,7 +2,7 @@
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
const dropRight = (arr, n = 1) => arr.slice(0, -n);