new function

Posted 前端++

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了new function相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script>
// var F=function(){};
// Object.prototype.a=function(){};
// Function.prototype. b=function(){};
// var f=new F();
// f.a;
// f.b;


function Person(){}
var friend = new Person();
 
Person.prototype = {
    constructor : Person,
    name : "kayorl",
    sayName : function () {console.log(this.name);}
}
 
friend.sayName(); //ERROR
</script>
小红书 P156页,可知原型修改后, 切断了原来原形与 更改后原形的关系
</body>
</html>

以上是关于new function的主要内容,如果未能解决你的问题,请参考以下文章

函数与数组

lua function

lua function

生成函数数组?

JavaScript Function

PostgreSQL-存储过程