JavaScript之粗浅原型和原型链

Posted web半晨

tags:

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

目录


1、示例代码

function Student(params) 
	this.params = params;


let student = new Student('159357');

console.log(student.__proto__ === Student.prototype);
// true
console.log(student.constructor === Student);
// true
console.log(Student.prototype.constructor === Student);
// true

2、注解

1、实例的__proto__全等于函数的原型对象。
2、实例的构造函数全等于函数本身。
3、函数的原型对象的构造函数全等于函数本身。

以上是关于JavaScript之粗浅原型和原型链的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript之继承(原型链)

JavaScript之继承(原型链)

javascript之原型和原型链

《JavaScript 闯关记》之原型及原型链

JavaScript之继承(原型链)

JavaScript对象之原型链