i have store id and its count in js object but wen i try to fetch its count using id i am unable code example
Example 1: js countKeys
let count = Object.keys(myobj).length
Example 2: js obj getting count of properties
let count = 0;
for (let k in myobj) if (myobj.hasOwnProperty(k)) count++;