Last active
January 27, 2021 11:43
-
-
Save nelantone/56e071a616d6c1d5b786558d182a318b 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
b = ['a','b', 'c'] | |
b.each do |b| | |
b.upcase! | |
b = ['reassign?'] | |
end | |
p b # => ['A','B','C'] nope! No reassignment |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment