當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript Array.shift()用法及代碼示例


Array shift()JavaScript用於從數組中刪除第一個元素並返回刪除的元素。此方法通過刪除第一個元素並將所有後續元素移動到較低的索引來修改原始數組。

用法:

array.shift()

例子:在這裏,shift()方法被調用array包含[1, 2, 3, 4, 5]。它刪除第一個元素(1) 從數組中將所有後續元素移動到較低的索引。修改後的數組變為[2, 3, 4, 5],以及刪除的元素(1)被返回。

Javascript


const array = [1, 2, 3, 4, 5];
// Removes the first element (1)
const removedElement = array.shift(); 
console.log(array); 
console.log(removedElement);
輸出
[ 2, 3, 4, 5 ]
1


相關用法


注:本文由純淨天空篩選整理自amanv09大神的英文原創作品 What is the use of the Array.shift() method in JavaScript?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。