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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。