Home > utils > moveToBottom
原地置底数组中的某个元素。
Signature:
export declare function moveToBottom<T>(arr: T[], from: number): T[];
Parameter | Type | Description |
---|---|---|
arr | T[] | 要处理的数组 |
from | number | 要移动元素的索引 |
Returns:
T[]
返回移动后的数组
moveToBottom([1, 2, 3], 0) // => [2, 3, 1]