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