I\'m probably missing something obvious, but is there a way to access the index/count of the iteration inside a hash each loop?
hash = {\'three\' => \'one\',
If you like to know Index of each iteration you could use .each_with_index
.each_with_index
hash.each_with_index { |(key,value),index| ... }