什麼是引用類型?javascript
是一種數據結構,將數據和功能組織在一塊兒。html
js中的數據類型有如下幾種:java
Number Boolean undefined Object Function String Null數組
基本類型:Number Boolean String undefined null數據結構
引用類型:也就是對象類型Object type,好比:Object 、Array 、Function 、Data等。(也是對象)(功能:存儲和傳輸數據。)this
基本類型和引用類型的區別:spa
https://www.cnblogs.com/ljuyi/p/6100071.htmlcode
建立對象htm
最佳建立對象的方式-對象字面量,優勢:代碼少,給人封裝的感受。對象
var person = { name:"bigchai", age:18 }
訪問對象
//訪問對象屬性的2種方式: alert(person.name);//點方式訪問; alert(person["name"]);//方括號的方式訪問; //區別:方括號的方式訪問能夠訪問變量 var this_name = "name"; alert(person[this_name]); //bigchai //結論: 除非必須使用變量來訪問屬性,不然建議點表示法。