count object keys code example
Example 1: js countKeys
let count = Object.keys(myobj).length
Example 2: js object keys
var myObj = {no:'u',my:'sql'}
var keys = Object.keys(myObj);//returnes the array ['no','my'];
Example 3: js obj getting count of properties
let count = 0;
for (let k in myobj) if (myobj.hasOwnProperty(k)) count++;