_.takeRight
Creates a slice of array with n elements taken from the end.Lodash
method. See example below to understand why.
- // Underscore/Lodash
- _.takeRight([1, 2, 3]);
- // => [3]
- _.takeRight([1, 2, 3], 2);
- // => [2, 3]
- _.takeRight([1, 2, 3], 5);
- // => [1, 2, 3]
- // Native
- [1, 2, 3].slice(-1);
- // => [3]
- [1, 2, 3].slice(-2);
- // => [2, 3]
- [1, 2, 3].slice(-5);
- // => [1, 2, 3]
- // Difference in compatibility
- // Lodash
- _.takeRight([1, 2, 3], 0);
- // => []
- // Native
- [1, 2, 3].slice(0);
- // => [1, 2, 3]
Browser Support for Array.prototype.slice()
1.0 ✔ | ✔ | 1.0 ✔ | ✔ | ✔ | ✔ |
当前内容版权归 you-dont-need 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 you-dont-need .