js基础 数组findIndex
2021-06-10 09:03
阅读:489
标签:color js基础 index ESS OLE func pre code mes 1 js基础 数组findIndex 标签:color js基础 index ESS OLE func pre code mes 原文地址:https://www.cnblogs.com/angdh/p/14458815.html
var le = [{name:"js"},
{name:"css"},
{name:"python"}
];
var index = le.findIndex(function(item){
return item.name== "css";
});
console.log(index);
评论
亲,登录后才可以留言!