javascript有八種數(shù)據(jù)類型:undefined, Null, Boolean, Number, String, Symbol, Biglnt,Object。
創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計(jì)、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的德興網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
symbol和Biglnt是ES6新增的數(shù)據(jù)類型:
這些數(shù)據(jù)類型分為基本數(shù)據(jù)類型和引用數(shù)據(jù)類型:
基本數(shù)據(jù)類型和引用數(shù)據(jù)類型的區(qū)別在于存儲(chǔ)位置不同:
堆和棧存在于數(shù)據(jù)結(jié)構(gòu)和操作系統(tǒng)內(nèi)存中
數(shù)據(jù)結(jié)構(gòu)中:
操作系統(tǒng)內(nèi):
(1)typeof
數(shù)組,對(duì)象,null都會(huì)被判斷為object
console.log(typeof 2); // number console.log(typeof true); // boolean console.log(typeof 'str'); // string console.log(typeof []); // object console.log(typeof function(){}); // function console.log(typeof {}); // object console.log(typeof undefined); // undefined console.log(typeof null); // object