Answers for "how to count the number of properties in a javascript object"

3

number of properties in object javascript

//To count objects own enumarable properties
const objectName={example:10}
console.log(Object.keys(objectName).length)
Posted by: Guest on March-25-2021
5

js obj getting count of properties

let count = 0;
for (let k in myobj) if (myobj.hasOwnProperty(k)) count++;
Posted by: Guest on November-16-2019

Code answers related to "how to count the number of properties in a javascript object"

Code answers related to "Javascript"

Browse Popular Code Answers by Language