Prashant
Prashant

Reputation: 5461

How to access a numeric property?

I have an object like:

var myObject = { '0' : 'blue' };

Now, when I try to access the value of the key '0' like:

myObject.0 

...I am getting an error. (Maybe this is not the proper way?)

How can I access the value of a key that is a number (like the above)?

Upvotes: 34

Views: 20482

Answers (3)

paicubes
paicubes

Reputation: 151

if you have data like

  `"rain": {
           "3h": 0
         },` 

then you can simply access it rain['3h']

Upvotes: 1

Steve Harrison
Steve Harrison

Reputation: 125610

This should work:

myObject["0"]

(myObject["propertyName"] is an alternative syntax for myObject.propertyName.)

You're getting the error because, in JavaScript, identifiers can't begin with a numeral. From the Variables page at the Mozilla Developer Centre:

A JavaScript identifier must start with a letter, underscore (_), or dollar sign ($); subsequent characters can also be digits (0-9). Because JavaScript is case sensitive, letters include the characters "A" through "Z" (uppercase) and the characters "a" through "z" (lowercase).

Upvotes: 74

Amarghosh
Amarghosh

Reputation: 59461

myObject["0"]

Upvotes: 8

Related Questions