NodeJS Count how many objects in array?

前端 未结 3 864
臣服心动
臣服心动 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:35

    I think your question should be How to get Array Size in Javascript?

    Answer: Use the length method.


    Examples:

    [1,2,3].length
    // => 3
    
    var a = { num: 1, obj: {}, arr: [{}, 3, "asd", {q: 3}, 1] }
    a.arr.length
    // => 5
    

提交回复
热议问题