Skip to content

Instantly share code, notes, and snippets.

@mitsuhirookuno
Last active July 14, 2017 04:45
Show Gist options
  • Save mitsuhirookuno/cef35d9c14ed881c313595184d239fad to your computer and use it in GitHub Desktop.
Save mitsuhirookuno/cef35d9c14ed881c313595184d239fad to your computer and use it in GitHub Desktop.
dupの効能
# 参照
params = { aaa: 123 }
copy_params = params
copy_params[:bbb] = 456
p params
# dup
params = { aaa: 123 }
copy_params = params.dup
copy_params[:bbb] = 456
p params
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment