JavaScript object properties can be named with an empty string, for example:
foo = { "" : "bar" }
Point notation does not seem to be able to name this property. Console output:
foo. >> "missing name after . operator"
What would you call a property?
source share