📅  最后修改于: 2023-12-03 14:42:27.565000             🧑  作者: Mango
TypedArray是一种特殊的数组类型,它只能存储固定类型的数据,包括Int8Array、Uint8Array、Uint8ClampedArray、Int16Array、Uint16Array、Int32Array、Uint32Array、Float32Array、Float64Array等。lastIndexOf()方法就是TypedArray实例对象的一个方法,它用于从后往前搜索指定元素的索引。
TypedArray.prototype.lastIndexOf(searchElement[, fromIndex])
参数:
返回值:
const arr = new Int8Array([-1, 0, 1, -2, 0, 1, -1]);
console.log(arr.lastIndexOf(1)); // 输出 5
console.log(arr.lastIndexOf(-1)); // 输出 6
console.log(arr.lastIndexOf(0)); // 输出 4
console.log(arr.lastIndexOf(-2)); // 输出 3
console.log(arr.lastIndexOf(2)); // 输出 -1,因为数组中没有元素值为2的元素。