SyntaxFix
Write A Post
Hire A Developer
Questions
hash.store(key, value) - Stores a key-value pair in hash.
Example:
hash #=> {"a"=>9, "b"=>200, "c"=>4} hash.store("d", 42) #=> 42 hash #=> {"a"=>9, "b"=>200, "c"=>4, "d"=>42}
Documentation