:(~~ 痛苦啊~~构造了一个“没有执行能力”的函数

这个东东看起来没有什么用啊~~

<script>
function MyFunc() {
}
MyFunc.prototype = Function;

var foo= new MyFunc();

alert(foo instanceof Function);
alert(foo()); // <-- 异常
</script>

原文地址:https://www.cnblogs.com/encounter/p/2188705.html