Merge pull request #956 from vaibhavmande/drop-snippet-typo-fix
Minor typo fixes with drop and dropRight snippets
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);
|
||||
|
||||
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user