gpt4 book ai didi

javascript - 访问对象中的函数

转载 作者:行者123 更新时间:2023-12-01 01:31:06 27 4
gpt4 key购买 nike

我尝试使用 console.log 访问我的对象中的这个函数,但我真的不明白为什么我无法访问它!我正在开始学习 Javascript,但我真的很受困于访问对象中的函数。

感谢您的帮助

const hotel = {
name: "Grand Hotel",
location: "Stockholm",
pricePerNight: 2200,
roomBooked: 23,
totalRoom: 223,
roomAvailable: function(){
return this.totalRoom - this.roomBooked;

}
};
hotel.roomAvailable();
console.log(hotel.roomAvailable);

最佳答案

您只是缺少日志函数中的括号:

hotel.roomAvailable()

关于javascript - 访问对象中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53268667/

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