How to get the size of JSON object in javascript

2 Answers

0 votes
const w = '{"worker" : [' +
'{"name":"Tom", "age":37},' +
'{"name":"Olivia", "age":42},' +
'{"name":"Jerry", "age":51},' +
'{"name":"Alessia", "age":29} ]}';
 
const JSONobj = JSON.parse(w); 
 
const size = Object.keys(JSONobj.worker).length

console.log(size);
 



 
/*
run:
 
4
 
*/

 



answered May 30, 2022 by avibootz
0 votes
const json = '{"id":383912,"name":"Albus Dumbledore","academicrank":"Professor"}';
 
const obj = JSON.parse(json);
 
const size = Object.keys(obj).length

console.log(size);
 



 
/*
run:
 
3
 
*/

 



answered May 30, 2022 by avibootz

Related questions

1 answer 113 views
1 answer 153 views
1 answer 160 views
1 answer 155 views
3 answers 297 views
...