RosettaCodeData/Task/Associative-array-Creation/JavaScript/associative-array-creation-2.js

5 lines
100 B
JavaScript
Raw Normal View History

2013-04-10 14:58:50 -07:00
var assoc = {
foo: 'bar',
'another-key': 3 //the key can either be enclosed by quotes or not
};