在JS中typeof返回的結果有哪幾種?

LDH-發表於2017-09-20

JS中typeof返回結果有六種如下:

  1. number (數字)
  2. boolean(布林)
  3. string(字串)
  4. object(物件)
  5. function(函式)
  6. undefined(未定義)

相關文章