Last active
February 14, 2019 12:33
-
-
Save harrisonmalone/e79eace76937c9bdbda3cc771a3837ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
arr = [1, 2, 3, 4] | |
new_arr = arr.map do |num| | |
num * 20 | |
end | |
puts new_arr | |
=> [20, 40, 60, 80] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment