網頁制作poluoluo文章簡介:toString 本來是用來做字符串轉換的,不過現在流行用來做變量類型的檢查了。舜子這裡也寫了一個函數,方便檢查變量的類型,可以用來代替 typeof.
toString 本來是用來做字符串轉換的,不過現在流行用來做變量類型的檢查了。破洛洛這裡也寫了一個函數,方便檢查變量的類型,可以用來代替 typeof
function getType(o) {
執行結果:
getType("abc"); //string
getType(true); //boolean
getType(123); //number
getType([]); //array
getType({}); //object
getType(function(){}); //function
getType(new Date); //date
getType(new RegExp); //regexp
getType(Math); //math