Skip to content

Instantly share code, notes, and snippets.

@nelantone
Last active January 27, 2021 11:43
Show Gist options
  • Save nelantone/56e071a616d6c1d5b786558d182a318b to your computer and use it in GitHub Desktop.
Save nelantone/56e071a616d6c1d5b786558d182a318b to your computer and use it in GitHub Desktop.
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