数据是这样的:
var obj = [ { id:1, name:"小明" }, { id:2, name:"小红" }, { id:3, name:"小雷" }];
我现在想知道name为‘小红’的下标是多少
//数组,要找的字段,要找的内容function findIndex(arr,key,word){ arr.map((o,n)=>{ if(o[key] == word){ return n; } }) }var t = findIndex(obj,'name','小红');console.log(t); //underfine
临摹微笑
相关分类