RosettaCodeData/Task/Associative-array-Iteration/CoffeeScript/associative-array-iteration.coffeescript
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

9 lines
113 B
Text

hash =
a: 'one'
b: 'two'
for key, value of hash
console.log key, value
for key of hash
console.log key