Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,34 @@
|
|||
var assoc = {};
|
||||
|
||||
assoc['foo'] = 'bar';
|
||||
assoc['another-key'] = 3;
|
||||
|
||||
// dot notation can be used if the property name is a valid identifier
|
||||
assoc.thirdKey = 'we can also do this!';
|
||||
assoc[2] = "the index here is the string '2'";
|
||||
;assoc;
|
||||
|
||||
//using JavaScript's object literal notation
|
||||
var assoc = {
|
||||
foo: 'bar',
|
||||
'another-key': 3 //the key can either be enclosed by quotes or not
|
||||
};
|
||||
|
||||
//iterating keys
|
||||
for (var key in assoc) {
|
||||
// hasOwnProperty() method ensures the property isn't inherited
|
||||
if (assoc.hasOwnProperty(key)) {
|
||||
puts('key:"' + key + '", value:"' + assoc[key] + '"');
|
||||
}
|
||||
}
|
||||
;assoc;
|
||||
|
||||
/*
|
||||
=!EXPECTSTART!=
|
||||
associativeArray.jsi:12: warn: duplicate var: assoc
|
||||
assoc ==> { 2:"the index here is the string \'2\'", "another-key":3, foo:"bar", thirdKey:"we can also do this!" }
|
||||
key:"another-key", value:"3"
|
||||
key:"foo", value:"bar"
|
||||
assoc ==> { "another-key":3, foo:"bar" }
|
||||
=!EXPECTEND!=
|
||||
*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue