NodeJS Count how many objects in array?

前端 未结 3 857
臣服心动
臣服心动 2020-12-20 15:14

How would I count how many objects there are inside an array?

The array looking like:

[ {id: 1}, {id: 2}, ...]

I assume I could use

3条回答
  •  感情败类
    2020-12-20 15:47

    Use .length

    var data = [{
        id: 1
    }, {
        id: 2
    }];
    
    console.log(data.length);

    Update, in your edit I see that

    offer.items_to_receive is undefined, ensure that object offer has property items_to_receive (should be array);

提交回复
热议问题