indexOf() 方法返回可以在數組中找到給定元素的第一個索引,如果不存在,則返回 -1。
用法
array.indexOf(searchElement[, fromIndex]);
參數詳情
searchElement- 要在數組中定位的元素。
fromIndex- 開始搜索的索引。默認為 0,即將搜索整個數組。如果索引大於或等於數組的長度,則返回 -1。
返回值
返回找到的元素的索引。
示例
var index = [12, 5, 8, 130, 44].indexOf(8);
console.log("index is:" + index );
在編譯時,它將在 JavaScript 中生成相同的代碼。
其輸出如下 -
index is:2
相關用法
- TypeScript Array forEach()用法及代碼示例
- TypeScript Array map()用法及代碼示例
- TypeScript Array unshift()用法及代碼示例
- TypeScript Array reduce()用法及代碼示例
- TypeScript Array slice()用法及代碼示例
- TypeScript Array splice()用法及代碼示例
- TypeScript Array lastIndexOf()用法及代碼示例
- TypeScript Array push()用法及代碼示例
- TypeScript Array join()用法及代碼示例
- TypeScript Array filter()用法及代碼示例
- TypeScript Array sort()用法及代碼示例
- TypeScript Array reduceRight()用法及代碼示例
- TypeScript Array every()用法及代碼示例
- TypeScript Array some()用法及代碼示例
注:本文由純淨天空篩選整理自 TypeScript - Array indexOf()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。