null 類型是第二個只有一個值的數據類型,它的值就是null ,null 值表示一個空對象指針,所以使用 typeof 操作符檢測null 的時候是一個對象。
element
font-family
font-size
font-style
font-variant
font-weight
letter-spacing
line-height
text-decoration
text-align
text-indent
text-transform
white-space
word-spacing
color
bg-attachment
bg-color
bg-image
bg-position
bg-repeat
width
height
border-top
border-right
border-bottom
border-left
margin
padding
max-height
min-height
max-width
min-width
outline-color
outline-style
outline-width
position
top
bottom
right
left
float
display
clear
z-index
list-style-image
list-style-type
list-style-position
vertical-align
border-collapse
border-spacing
caption-side
empty-cells
table-layout
text-shadow
-webkit-box-shadow
border-radius
overflow
cursor
visibility
這裡我們提 null 的主要目的是為了說一點,如果我們定義一個變量,而這個變量未來是用於存儲對象的,此時,我們最好將這個變量初始化為 null ,這樣以來,只要檢測null 值就可以知道這個變量是否已經保存了一個對象的引用了。
var car = null;
if(car != null){
}