get(key) -> value
返回 hash 指定键对应的值。
var h = new Hash({ a: 'apple', b: 'banana', c: 'coconut' }); h.get('a'); // -> 'apple' h.get('d'); // -> undefined