According to the official JavaScript documentation you can define object literal property names using integers:
Additionally, you can use a numeric or
You can reference the object's properties as you would an array and use either me[123] or me["123"]
me[123]
me["123"]