Skip to content

Instantly share code, notes, and snippets.

@andyjbas
Created February 7, 2013 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andyjbas/4733732 to your computer and use it in GitHub Desktop.
Save andyjbas/4733732 to your computer and use it in GitHub Desktop.
array = ["andy", "eric", "bloc"]
array.each_with_index do |element, index|
puts "The index of #{element} is #{index}"
end
# => The index of andy is 0
# => The index of eric is 1
# => The index of bloc is 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment