Introspection 函數-type-of()
type-of() 函數主要用來判斷一個值是屬於什麼類型:
返回值:
- number為數值型。
- string為字符串型。
- bool為布爾型。
- color為顏色型。
>> type-of(100)
"number"
>> type-of(100px)
"number"
>> type-of("asdf")
"string"
>> type-of(asdf)
"string"
>> type-of(true)
"bool"
>> type-of(false)
"bool"
>> type-of(#fff)
"color"
>> type-of(blue)
"color"
>> type-of(1 / 2 = 1)
"string"