Array.indexOf()是內置的TypeScript函數,用於查找作為該函數的參數提供的搜索元素首次出現的索引。句法:
array.indexOf(searchElement[, fromIndex])
參數:此方法接受上麵提到和下麵描述的兩個參數:
- searchElement:此參數是要在數組中定位的Element。
- fromIndex:此參數是開始搜索的索引。
返回值:此方法返回找到的元素的索引。
下麵的示例說明TypeScript中的Array indexOf()方法。
範例1:
的JavaScript
<script>
// Driver code
var arr = [ 11, 89, 23, 7, 98 ];
// use of indexOf() method
var val = arr.indexOf(7)
// printing element
console.log(val);
</script>
輸出:
3
範例2:
的JavaScript
<script>
// Driver code
var arr = [ 'a','b','c','a','e' ];
// use of indexOf() method
var val = arr.indexOf('a',4)
// printing element
console.log(val);
</script>
輸出:
-1
相關用法
- Typescript String indexOf()用法及代碼示例
- JavaScript Array indexOf()用法及代碼示例
- Javascript String indexOf()用法及代碼示例
- Node.js Buffer.indexOf()用法及代碼示例
- Lodash _.indexOf()用法及代碼示例
- Typescript Array unshift()用法及代碼示例
- Typescript Array toString()用法及代碼示例
- Typescript Array splice()用法及代碼示例
- Typescript Array sort()用法及代碼示例
- Typescript Array some()用法及代碼示例
- Typescript Array slice()用法及代碼示例
- Typescript Array shift()用法及代碼示例
- Typescript Array reverse()用法及代碼示例
- Typescript Array reduceRight()用法及代碼示例
- Typescript Array reduce()用法及代碼示例
- Typescript Array push()用法及代碼示例
- Typescript Array pop()用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 TypeScript | Array indexOf() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。