Answers for "count() to count the number of properties in an object javascript"

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 "count() to count the number of properties in an object javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language