js原型链原理

js原型链原理

 

一、构造函数

什么是构造函数:当一个普通函数创建一个类对象是,那么就程它为构造函数。

特点:

默认首字母大写

使用new关键字来调用,并返回一个实例对象

内部使用this来构造属性和方法

this指向返回的新对象

function Person(name){ this.name = name this.eat = function(){ console.log("方法") } } let per = new Person("小小") per.eat()

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzsyzp.html