Skip to content

Instantly share code, notes, and snippets.

@Omrika
Last active August 29, 2015 14:25
Show Gist options
  • Save Omrika/7a435c53b49bcb2112b5 to your computer and use it in GitHub Desktop.
Save Omrika/7a435c53b49bcb2112b5 to your computer and use it in GitHub Desktop.
array = (1..10).to_a
container = []
array.each do |x|
container << x if x.odd?
end
container[3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment