刪除核心 JavaScript 中的特定陣列項目
想要輕鬆地從陣列中刪除特定值嗎?核心 JavaScript 提供了一個簡單的方法。
方法:
splice() 方法:
splice() 方法允許您刪除現有元素或插入新元素來修改陣列。
範例:
考慮陣列 [2, 5, 9]。若要刪除值 5,請依照下列步驟操作:
const array = [2, 5, 9]; const index = array.indexOf(5); // Find the index of the element if (index > -1) { // Only splice array if item is found array.splice(index, 1); // 2nd parameter removes only one item } // array = [2, 9]
在此範例中,indexOf 方法找到值 5 的索引,即 1。然後 splice 方法刪除索引 1 處的元素,產生修改後的陣列 [2, 9].
以上是如何在 JavaScript 中從陣列中刪除特定項目?的詳細內容。更多資訊請關注PHP中文網其他相關文章!