gpt4 book ai didi

javascript - Javascript 中的类方法

转载 作者:行者123 更新时间:2023-11-30 12:26:43 24 4
gpt4 key购买 nike

Javascript 中有类方法吗?

Ruby 类方法示例

class Item
def self.show
puts "Class method show invoked"
end
end

Item.show

最佳答案

像这样

function Item() {
// you can put show method into function
// Item.show = function () {};
}

Item.show = function () {
console.log('Class method show invoked');
}

Item.show();

但最好使用对象字面量

var Item = {
show: function () {
console.log('Class method show invoked');
}
};

Item.show();

关于javascript - Javascript 中的类方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29107438/

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