According to the official JavaScript documentation you can define object literal property names using integers:
Additionally, you can use a numeric or
You can use me[123] or me["123"]. Both work.
me[123]
me["123"]