gpt4 book ai didi

Javascript - 创建对象的推荐方法

转载 作者:行者123 更新时间:2023-11-30 17:03:31 24 4
gpt4 key购买 nike

<分区>

看起来有很多方法可以在 Javascript 中创建对象,如下所示:

var person = {
firstName:"John",
lastName:"Doe",
age:50,
eyeColor:"blue"
};

function person(){
this.firstName = 'first';
this.lastName = 'last';
this.age = 'age';
this.eyeColor = 'eyecolor';
}

person = (function () {
this.firstName = 'first';
this.lastName = 'last';
this.age = 'age';
this.eyeColor = 'eyecolor';
}();

有人可以帮助我了解以上哪一项是最佳实践吗?

还有在什么场景下使用自调用函数?

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com