Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 434 Bytes

take.md

File metadata and controls

20 lines (14 loc) · 434 Bytes
标题 标签
take(截取元素数组) array(数组)

创建一个从开头移除 n 个元素的数组。

  • 使用 Array.prototype.slice() 创建数组的一个切片,其中 n 个元素从头开始。
const take = (arr, n = 1) => arr.slice(0, n);

调用方式:

take([1, 2, 3], 5); // [1, 2, 3]
take([1, 2, 3], 0); // []

应用场景