default(key=nil ) Returns the default value : default « Hash « Ruby






default(key=nil ) Returns the default value


h = Hash.new  
h.default  
h.default(2) 
h = Hash.new("cat")  
h.default  
h.default(2)  
h = Hash.new {|h,k| h[k] = k.to_i*10}
h.default  
h.default(2)  

 








Related examples in the same category

1.default= Sets the default value