Clear - empty a hash
- clear
planets = {
"Mars" => 1,
"Jupyter" => 2,
"Saturn" => 3,
"Earth" => 4,
}
puts planets.clear # {}
puts planets # {}
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
planets = {
"Mars" => 1,
"Jupyter" => 2,
"Saturn" => 3,
"Earth" => 4,
}
puts planets.clear # {}
puts planets # {}