gpt4 book ai didi

javascript - 在一个语句中声明具有属性的函数?

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

这个问题在这里已经有了答案:





Is it possible to initialize an object as a function with properties?

(2 个回答)


10 个月前关闭。




我知道我可以创建一个函数:

const fn = () => {}
而且我知道我可以为其附加一个属性:
fn.a = 'a'
我可以在一个语句中使用某种对象文字语法来完成我上面所做的事情吗?
我在想一些事情:
const fn = {
(): {},
a: 'a'
}

最佳答案

你可以在这样的一个语句中做到这一点。const fn = Object.assign(() => {}, { a: 'a' });

关于javascript - 在一个语句中声明具有属性的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69496920/

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