|
|
1 tháng trước cách đây | |
|---|---|---|
| .. | ||
| node_modules | 1 tháng trước cách đây | |
| LICENSE | 1 tháng trước cách đây | |
| README.md | 1 tháng trước cách đây | |
| index.js | 1 tháng trước cách đây | |
| package.json | 1 tháng trước cách đây | |
Get the last or last n elements in an array.
Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your :heart: and support.
Install with npm:
$ npm install --save array-last
var last = require('array-last');
last(['a', 'b', 'c', 'd', 'e', 'f']);
//=> 'f'
last(['a', 'b', 'c', 'd', 'e', 'f'], 1);
//=> 'f'
last(['a', 'b', 'c', 'd', 'e', 'f'], 3);
//=> ['d', 'e', 'f']
You might also be interested in these projects:
| Commits | Contributor |
| --- | --- |
| 19 | jonschlinkert |
| 3 | SpyMaster356 |
| 2 | bendrucker |
| 2 | phated |
Jon Schlinkert
Copyright © 2017, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on November 30, 2017.