JS补充16

        构造函数的构造原理

1.在函数体最前面隐式的加上了this={}

2.执行this.xxx=xxx;

3.隐式的返回this。

function Person=(name, height){

            // var this={}

          this. name= name;

          this. height= height;

          // return this;

}

console. log( new Person(" xiao hu",181));

              包装类

new string();

new Boolean();

new Number();

你可能感兴趣的:(JS补充16)