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["
You can always do Object.getOwnPropertyNames(myObject).length to get the same result as [].length would give for normal array.
Object.getOwnPropertyNames(myObject).length
[].length