RosettaCodeData/Task/Associative-array-Iteration/CoffeeScript/associative-array-iteration.coffee

10 lines
113 B
CoffeeScript
Raw Permalink Normal View History

2013-04-10 14:58:50 -07:00
hash =
a: 'one'
b: 'two'
for key, value of hash
console.log key, value
for key of hash
console.log key