gpt4 book ai didi

javascript - 使用 "new"表示法将函数设置为对象成员

转载 作者:行者123 更新时间:2023-12-03 02:37:27 26 4
gpt4 key购买 nike

各位,我是Javascript新手...我知道如何使用这种格式将函数合并到对象中...

var xyz = {
yearOfBirth: 1963,
calculateAge: function() {
this.age = (new Date().getFullYear()) - this.yearOfBirth;
}
};

***但是我需要您对其他格式的指导...

var abc = new Object();

谢谢!

最佳答案

关于你的问题。当使用构造函数定义对象时,可以像这样定义属性:

var abc = new Object()
abc["yearOfBirth"]=1963

abc["calculateAge"]=function(){
this.age=(new Date().getFullYear())-this.yearOfBirth;
}

你也可以这样做:

var abc = new Object()
abc.yearOfBirth=1963

abc.calculateAge=function(){
this.age=(new Date().getFullYear())-this.yearOfBirth;
}

关于javascript - 使用 "new"表示法将函数设置为对象成员,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48486331/

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