简化的对象写法
- 省略同名的属性值
- 省略方法的function
- 例如:
let x = 1;
let y = 2;
let point = {
x,
y,
setX (x) {this.x = x}
};
let username = 'kobe';
let age = 40;
let obj = {
username,//同名的属性可以省略不写
age,
getName(){//可以省略函数的function
return this.username;
}
};
console.log(obj);
console.log(obj.getName());
网友评论