Mega Code Archive

 
Categories / Ruby / Array
 

The map method returns a new array instead of a string

month_a = %w[ nil jan feb mar apr may jun jul aug sep oct nov dec ] month_a_2007 = month_a.map { |e| e.capitalize + " 2007" }