對象

一、對象的建立方法函數

  第一種:對象字面量this

    var  obj  =  { }    spa

  第二種:構造函數對象

    var  obj  =  new  Object( )io

    function  Student( ){console

      //  var  this  =  { }function

      this.name = "aaa";構造函數

      this.sex  =  "male"數據類型

      //  return  this;引用

      //  return { }; // 能夠自定義返回值,可是返回值必須是引用值,若是是基本數據類型,仍是會返回this

    }

    var  student  =  new  Student( )

 

二、包裝類

  var  num  =  4;

  num.len  =  3;

  // new  Number(4).len  =  3;  delete

  console.log(num.len)  // undefined

  // console.log(new  Number(4).len)

相關文章
相關標籤/搜索