var myObject = { '0' : 'blue', 'satu' : 'red' };
//Usually, to access the property with:
myObject.0 //this is usually not working
myObject.satu //this is ok, because its not numeric
//use this instead
(myObject["0"] is an alternative syntax for myObject.0.