4 lines
100 B
JavaScript
4 lines
100 B
JavaScript
var assoc = {
|
|
foo: 'bar',
|
|
'another-key': 3 //the key can either be enclosed by quotes or not
|
|
};
|