JS-7 typeof 運算子

张筱菓發表於2024-12-09

  數值:number、字串:string、布林值:bookan、物件:object

  JavaScript有三種方法,可以確定一個值到底是什麼型別,而我們現在需要接觸到的就是typeof

1、數值返回number

  typeo 123//"number"

2、字串返回string

  typeof'123'//"string"

3、布林值返回boolean

  typeof false //"boolean"

4、對返回object

  typeof{}//"object"

unll和undefined的區別

  unll與undefined都可以表示“沒有”,含義非常相似。將一個變數賦值為unll或undefined,老實說,語法效果

幾乎沒有區別。既然含義與用法都差不多,為什麼要同時設定兩個這樣的值

  

相關文章