支持基本類型的獲取
用法
var v = true;//"string"
typeof v; //boolean
PS
當確定一個值是function或者object
用法
var v = new Date();
v instanceof object;//true
v instanceof Date;// true
比instanceof更一步到位的方法
var v = new Date();
v
v
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/20081.html