tostring 本来是用来做字符串转换的,不过现在流行用来做变量类型的检查了。网页设计这里也写了一个函数,方便检查变量的类型,可以用来代替 typeof
执行结果:
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
新闻热点
疑难解答