美文网首页
2019-04-17

2019-04-17

作者: 独角仙没有角 | 来源:发表于2019-04-17 19:42 被阅读0次

    每个构造函数都会有一个prototype
    1:// 通过关键字function 创建构造函数
    function Info () {
    console.log(this);//this 指向当前的构造函数
    this.name = name,
    this.age = age,
    this.sayHi = function () {
    console.log("创建一个sayHi方法");
    }
    }
    var person = new Info("张三",28,"method");//通过new关键字,将构造函数实例化一个对象;


    QQ截图20190417194217.png

    关于console.log(person.prototype)为什么结果为undefined的理解

    相关文章

      网友评论

          本文标题:2019-04-17

          本文链接:https://www.haomeiwen.com/subject/mbxowqtx.html