JavaScript 中的 index 用來識別陣列或字串中的元素位置。數組中,index 從 0 開始。字串中,第一個字元的 index 為 0。 index 可用於遍歷、尋找和修改元素。例如:找出陣列中第三個元素:numbers[2]找出字串中第五個字元:str[4]遍歷數組,列印每個元素及其index:numbers.forEach((num, idx) => console.log(num, idx));
#JavaScript 中index 的用法
index 是JavaScript 中一個重要的概念,它用於標識數組或字串中的元素位置。
陣列
在陣列中,index 從 0 開始,表示陣列的第一個元素。每個後續元素的 index 依序增加 1。例如:
<code class="javascript">const numbers = [1, 2, 3, 4, 5]; console.log(numbers[0]); // 输出:1 console.log(numbers[2]); // 输出:3 console.log(numbers[4]); // 输出:5</code>
字串
類似地,字串也可以使用 index 存取其字元。字串中的第一個字元的 index 為 0,每個後續字元的 index 都依序增加 1。例如:
<code class="javascript">const str = "Hello world"; console.log(str[0]); // 输出:"H" console.log(str[4]); // 输出:"o" console.log(str[10]); // 输出:"d"</code>
其他用法
index 也可以用於其他場景,例如:
for
迴圈或forEach()
方法來遍歷陣列或字串,並存取每個元素或字元的index。 indexOf()
或lastIndexOf()
方法來尋找陣列或字串中特定元素或字符的index。 []
語法來修改陣列或字串中特定位置的元素或字元。 注意:
undefined
。 以上是js中index的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!