Languages
[Edit]
EN

JavaScript - get json object length

0 points
Created by:
Evania
584

In this article, we would like to show you how to get JSON length in JavaScript.

The below example shows how to use Object.keys() method to get an array of our json object properties and count them with .length property.

Note: In this solution we only get the number of JSON object properties.

Practical example:

// ONLINE-RUNNER:browser;

var json = { 'one': 1, 'two': 2, 'three': 3 };

var jsonLength = Object.keys(json).length;
console.log(jsonLength);

Output:

3

References

Alternative titles

  1. Javascript - get json size
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join