ran npm run build-list & update intial-of-list description

This commit is contained in:
King
2017-12-14 03:44:45 -05:00
parent b7f716ef42
commit bf499d9f2c
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
### Initial of list
Return `arr.slice(0,-1)`.
Use `arr.slice(0,-1)`to return all but the last element of the array.
```js
const initial = arr => arr.slice(0, -1);