I have a JavaScript object. Is there a built-in or accepted best practice way to get the length of this object?
const myObject = new Object(); myObject["
The number of keys in myObj are:
This works for me:
var size = Object.keys(myObj).length;