Skip to content

Instantly share code, notes, and snippets.

@launchkit-codes
Created August 24, 2018 14:03
Show Gist options
  • Select an option

  • Save launchkit-codes/0c26191ca40806c95a2d381d5d599c03 to your computer and use it in GitHub Desktop.

Select an option

Save launchkit-codes/0c26191ca40806c95a2d381d5d599c03 to your computer and use it in GitHub Desktop.
class Array
def my_map
return self.dup unless block_given?
ary = []
self.each do |elem|
ary << yield(elem)
end
ary
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment