js如何獲取指定元素在陣列中個數

admin發表於2017-03-28

本章節介紹一下如何獲取指定元素在陣列出現的個數。

程式碼例項如下:

[JavaScript] 純文字檢視 複製程式碼
var arr=["antzone","softwhy.com","css","js","css"];
function done(arr,ele){
  var temp=[];
  for(var index=0;index<arr.length;index++){
    if(arr[index]==ele){
          temp.push(true);
        }
  }
  return temp.length;
}
console.log(done(arr,"css"));

上面的程式碼實現了我們的要求,程式碼非常的簡單,這裡就不多介紹了。

相關文章