How to iterate keys in an object to display the key and the values associated with it? Let's say the hash looks like this:
hash = a: 'b' c: 'd' e: 'f'
Try the following:
for k, v of hash console.log('%s %s', k, v)
for key, value of hash console.log "#{key} = #{value}"