Skip to content Skip to sidebar Skip to footer

Javascript Object Key Value Pairs

I created this JavaScript object that contains key/value pairs. The keys are the states and the values are arrays of the cities within each state. I have included a link to my cod

Solution 1:

There is nothing wrong, just a limitation of the editor, try removing one string before and you will see the color will match the next string.

One alternative, would be to write one long string with a delimiter:

'string1|string2|string3'.split('|');  // ['string1', 'string2', 'string3']

Solution 2:

Your object is set up properly, you can access its properties in this way:

//for example property 'AC' at index 0location["AC"][0]//returns Acrelândia

Post a Comment for "Javascript Object Key Value Pairs"