I'm confusing whether quotation marks need or not?
If I will make an object array without quotation marks like this :
var list = {
name : 'robert',
age : 21
};
Can I use quotation marks at key name? I can see some of guys using quotation marks on key name..
var list = {
"name" : 'robert',
"age" : 21
};
This is very important for me even though I learn now javascript just beginner I have to make sure that quotation marks as to where I should put it on.