I\'m new to Coffeescript and I\'m having issues resolving an issue. I have a JSON object that is currently stored in a variable. How do I iterate through the keys in the JSON ob
for key, value of result console.log "#{key} and #{value}"
more in the docs#loops
result = JSON.parse client for c in result console.log(c.key +"-"+ c.value)
it's work!