Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
オブジェクト内のキーを繰り返し処理して、関連付けられているキーと値を表示するにはどうすればよいですか? ハッシュは次のようになります。
hash = a: 'b' c: 'd' e: 'f'
for key, value of hash console.log "#{key} = #{value}"
これを試して:
for k, v of hash console.log('%s %s', k, v)