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

10 lines
113 B
CoffeeScript
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
hash =
a: 'one'
b: 'two'
for key, value of hash
console.log key, value
for key of hash
console.log key