獲取某個元素第一次出現在數組(json數組)的索引
阿新 • • 發佈:2018-08-07
func val urn 一次 dex spa fir console 獲取
function firstIndex(arr, text) { // 若元素不存在在數組中返回-1 let firstVal = -1; for (let i = 0; i < arr.length; i++) { // json (arr[i].id == text) if (arr[i] === text) { firstVal = i; return firstVal; break; } } return firstVal; }// json數組 // let array = [{ id: "1" }, { id: "2" }, { id: "3" }]; // let text = "2"; // 普通數組 let array = [1, 2, 3, 4, 5]; let text = 3; console.log("獲取某個元素第一次出現在數組的索引", firstIndex(array, text));
獲取某個元素第一次出現在數組(json數組)的索引