jsarray删除元素 前端js的findindex方法
Array.prototype.findIndex()方法是返回符合条件的第一个元素的位置(从0开始),如果没有符合条件的元素,则返回-1。
语法:
arr.findIndex(callback(element[, index[, array]])[, thisArg])
参数:
callback:用来测试数组的每个元素的函数,参数为element, index, array
thisArg:执行 callback 时使用的 this 值
示例:
let array1 = [12, 5, 8, 130, 44];
let foundIndex = array1.findIndex(function(element) {
  return element > 13;
});
console.log(foundIndex);
// expected output: 3

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。