2021-11-04js►es6对象中属性和方法的简写对象中属性和方法的简写包含:对象中属性名和变量名相同时可以简写对象中的方法可以省略function12345678910const name = 'zs'const age = 18const person = { name, age, sayHi() { console.log('hi'); }}Newer函数参数默认值OlderstartsWith & endsWith & includes