ES6中json的2个变化 简写:名字和值相同时,json可以可以简写 let a=12,b=5; let json = { a, b } console.log(json) // { a:12 , b:5 } 省略function:json中的函数可以简写 let persen ={ name:'倩倩', age:18, showName(){ alert(this.name) } } persen.showName() ES6与传统面向对象 传统面向对象:类和构造函数在一起,为对象添加方法时…