JS中prototype与__proto__有何具体用法及实例对比?
- 内容介绍
- 文章标签
- 相关推荐
本文共计705个文字,预计阅读时间需要3分钟。
原文示例:原文:本文实例讲述了JS原型prototype和__proto__用法。分享给大众提供参考,具体如下:
首先看一个实例:function Foo() {} var foo=new Foo(); console.log(foo.prototype); // undefined console.log(foo.__proto__===Foo.prototype); // true
改写后:示例:function Foo() {} var foo=new Foo(); console.log(foo.prototype); // undefined console.log(foo.__proto__===Foo.prototype); // true
本文实例讲述了JS原型prototype和__proto__用法。
本文共计705个文字,预计阅读时间需要3分钟。
原文示例:原文:本文实例讲述了JS原型prototype和__proto__用法。分享给大众提供参考,具体如下:
首先看一个实例:function Foo() {} var foo=new Foo(); console.log(foo.prototype); // undefined console.log(foo.__proto__===Foo.prototype); // true
改写后:示例:function Foo() {} var foo=new Foo(); console.log(foo.prototype); // undefined console.log(foo.__proto__===Foo.prototype); // true
本文实例讲述了JS原型prototype和__proto__用法。

