Answers for "array.each with index ruby"

7

ruby each with index

colors = ['red', 'green', 'blue']
colors.each_with_index do |item, index|
	p "#{index}:#{item}" 
end

"0:red"
"1:green"
"2:blue"
Posted by: Guest on May-06-2020
2

ruby each array

a = [ "a", "b", "c" ]
a.each {|x| print x, " -- " }
Posted by: Guest on November-17-2020

Browse Popular Code Answers by Language