如何将Function {}转换为实函数?

时间:2019-02-13 12:56:20

标签: javascript

是否可以将Funtion {}转换为实函数类型?

const foo = function(){ return 233 }
const bar = { __proto__:  foo }
foo.prototype == bar.prototype //true
bar() //TypeError: bar is not a function
foo
// [Function: foo]
bar
// Function {}

'bar'实际上几乎与'foo'接近,但是它无法被调用。像“ foo”一样还需要做什么?

0 个答案:

没有答案