js系統總結

來源:互聯網
上載者:User

標籤:情況   優先   結果   特殊   type   布爾   字串   boolean   java   

1.變數名可以由數字,字母,底線及貨幣符號組成,但不能以數字開頭

2.js基礎資料型別 (Elementary Data Type):數字(浮點數與整數,Infinity),字串,布爾值,undifined(已申明未賦值的變數),null

 非基礎資料型別 (Elementary Data Type):對象

3.typeof返回的結果:number,string,boolean,undefined,object,function

  1) typeof Infinity //number 表示超出了javaScript處理範圍的值,任何數除以0也是Infinity

  Infinity + Infinity = Infinity

  Infinity - Infinity =  NaN;

  另外Infinity與其他任何運算元執行任何運算結果也等於Infinity

  2) typeof NaN //number NaN是一種特殊的數字類型,在運算中使用不恰當的運算元導致運算失敗,該運算就會返回NaN

  var a = 10 * "f";  NaN

  1+2+NaN = NaN

  NaN不等於任何東西,包括它自己 NaN = NaN; //false

  3) 當我們將一個數字字串用於算數運算中的運算元時,該字串會在運算中被當做數字類型來使用(加法運算除外)

    var s = ‘1‘;

    s = 3*s;

    typeof s; "number"

  4)操作符的優先順序 !> && > ||

  5)轉換為false的6中情況  Null 字元串,null,undefined,0,NaN,false;

  6)undefined和null的區別 typeof undefined //undefined; typeof null //object

    轉換成數字: var i = 1*undefined; i=NaN;   var b = 1*null; b=0;

 

  

js系統總結

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.