九州下载 - 系统安卓苹果手机游戏推荐下载网站!

当前位置:九州下载 > 建站问答 >

js中对象的两种属性

时间:2023-02-26 09:40编辑:九州下载来源:www.wzjsgs.com

1、对象有两种属性,普通的数据属性和访问器属性。

2、访问器属性本质上是用于获取和设置值的函数(可以拦截、过滤、处理等操作要设置或获取的属性),但从外部代码来看就像传统属性一样。

实例

constuser={
name:"John",
surname:"Smith",
getfullName(){
return`${this.name}${this.surname}`;
},
setfullName(value){
[this.name,this.surname]=value.split('');
},
};
console.log(user.fullName);//JohnSmith
user.fullName='testfullName';
console.log(user.fullName);//testfullName

以上就是js中对象的两种属性,希望对大家有所帮助。

相关文章