此属性返回Map对象中键/值对的数量。
Map.size
var myMap = new Map(); myMap.set("J", "john"); myMap.set("M", "mary"); myMap.set("T", "tom"); console.log(myMap.size);
3