javascript - Count objects in an array? - Stack Overflow

I have an array like this:[{"this":"that","int":5},{"this":&quo

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

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743618114a4479325.html

相关推荐

  • javascript - Count objects in an array? - Stack Overflow

    I have an array like this:[{"this":"that","int":5},{"this":&quo

    23小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信