LoginSignup
0
0

More than 5 years have passed since last update.

[Ruby] Hashオブジェクト 値を削除する

Posted at

ハッシュオブジェクトの値の削除の仕方

Hashを作る

user = {
  name: 'tarou',
  age: 29,
  race: 'caucasian'
}

deleteメソッドに削除対象のキーを指定することで削除できる
戻り値は削除されたキーに対応する値になる

user.delete(:race)
=> "caucasian"
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0