最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Count objects in an array? - Stack Overflow

programmeradmin3浏览0评论

I have an array like this:

[{"this":"that","int":5},{"this":"that","int":5}]

How can I count the number of objects({}) inside of an array with Javascript?

Thanks in advance.

I have an array like this:

[{"this":"that","int":5},{"this":"that","int":5}]

How can I count the number of objects({}) inside of an array with Javascript?

Thanks in advance.

Share Improve this question edited Mar 2, 2016 at 18:58 Asons 87.3k12 gold badges117 silver badges174 bronze badges asked Mar 2, 2016 at 18:16 krmax44krmax44 3341 gold badge3 silver badges13 bronze badges 2
  • 1 with Array#length? or do you mean the object? – Nina Scholz Commented Mar 2, 2016 at 18:17
  • 1 Were you really not able to look up the Array.prototype.length property? – Omri Aharon Commented Mar 2, 2016 at 18:19
Add a ment  | 

5 Answers 5

Reset to default 7
[{"this":"that","int":5},{"this":"that","int":5}].length; // 2

Try,

var cnt = 0;
var arr = [5 , 3 , "not an object" , {"this":"that","int":5},{"this":"that","int":5}];

arr.forEach(function(itm){
 if(!itm.__proto__.__proto__){
  cnt++;
 }
});

console.log(cnt + "normal objects are there"); //2
var length = arrayName.length;

Simply like this:

var yourArrayName = arrayName.length 

As when you have an array and use the .length it counts how many objects there are in the array.

Object {} inside array [] treated as items so you find the length of array to count the item(s)

var $data=[{"this":"that","int":5},{"this":"that","int":5}];

    var count=$data.length
发布评论

评论列表(0)

  1. 暂无评论