each with index code example
Example 1: 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"
Example 2: forEach index
const array1 = ['a', 'b', 'c'];
array1.forEach((element, index) => console.log(element, index));