update last-of-list & ran npm run build-list

This commit is contained in:
King
2017-12-14 03:49:18 -05:00
parent 27c02041fd
commit 2123d8d50a
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
### Last of list
Return `arr.slice(-1)[0]`.
Use `arr.slice(-1)[0]` to get the last element of the given array.
```js
const last = arr => arr.slice(-1)[0];