ruby Ruby on Rails - Cool stuff & tips Arrays: map & each_with_index 在跑陣列(array) for-each 每一個 interation 可以帶上相對應的 index,利用 each_with_index 這個方法: ['a', 'b', 'c'].each_with_index do { |item, index| puts "#{index}-#{item}" } 當然,我們也可以利用 index 對應到的 element 組成一個新的 object: ['a', 'b', 'c'].each_