// map字面量示例
let map = {
name: "John",
age: 30,
isStudent: false
};
let map1 = {
b: "a",
w: {
w:2,
p:3
}
let map2 = {
a: { b:{ c: { d: 9 } } }
let map3 = {a:1,w:3,}