0
有沒有辦法以更高效的方式實現這些代碼?因爲循環在一個非常大比分陣只是爲了找到一個得分屬性是非常昂貴的在對象數組中循環屬性的最有效方法是什麼?
var scores = [{scoredBy:"youssef",score:5},{scoredBy:"omar",score:3}];
scores.forEach(score=>{
if(score.scoredBy == "youssef"){
console.log(score);
}
})
也許使用一個循環結構,你可以在比賽中斷。 – Teemu
@Teemu在條件中添加return語句應該足夠了 – Sebastianb
@Sebastianb不能forEach .... – epascarello