I've tried looking to see if this is possible, but I can't find my answer.
I'm trying to get the following to work:
var defaults = {
'background-color': '#000',
color: '#fff',
weekdays: {['sun','mon','tue','wed','thu','fri','sat']}
};
It just gives an error, and I've tried using ({...}) and [{...}] I'd like to be able to access the weekdays using somthing like:
defaults.weekdays[0];
is this possible?

background-color, it needs to be quoted. Eg"background-color": '#000'– Crescent Fresh Dec 1 '09 at 21:11[]is for arrays,{}is for objects – Justin Johnson Dec 1 '09 at 21:13