Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Reject - remove an element from a hash

  • reject
  • reject!
planets = {
  "Mars"    => 1,
  "Jupyter" => 2,
  "Saturn"  => 3,
  "Earth"   => 4,
}
puts planets.reject("Mars")
puts planets

puts planets.reject!("Mars")
puts planets
{"Jupyter" => 2, "Saturn" => 3, "Earth" => 4}
{"Mars" => 1, "Jupyter" => 2, "Saturn" => 3, "Earth" => 4}
{"Jupyter" => 2, "Saturn" => 3, "Earth" => 4}
{"Jupyter" => 2, "Saturn" => 3, "Earth" => 4}