page contents

你能为函数定义属性吗?

轩辕小不懂 发布于 2022-03-14 14:39
阅读 646
收藏 0
分类:WEB前端开发
3282
Nen
Nen
- 程序员

是的,因为函数也是对象。

让我们看一个例子:

let func = function(x) {


};

func.property1 = "Hello there";

console.log(func.property1);

输出:

Hello there

请先 登录 后评论