Map.prototype.get(key). 取得某個key 的值,如果沒有這個key 則返回undefined。 var m = new Map([['a', 1], ['b', 2]]); // 1 m.get('a'); ...
確定! 回上一頁