Skip to content

Instantly share code, notes, and snippets.

@xander-miller
Created November 1, 2014 02:09
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 xander-miller/3d48ad9bf1e928e15005 to your computer and use it in GitHub Desktop.
Save xander-miller/3d48ad9bf1e928e15005 to your computer and use it in GitHub Desktop.
def new_map(array)
new_array = []
array.each do |item|
new_array << yield(item)
end
new_array
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment