type 类型判断
var a = 1 Object.prototype.toString.call(a) //输出[object Number] Object.prototype.toString.call(a).slice(8,-1) //输出Number
Array
/*判断一个元素是否在数组中*/ [1,2,3].indexOf(1) //输出0 [1,2,3].indexOf(4) //输出-1
var a = 1 Object.prototype.toString.call(a) //输出[object Number] Object.prototype.toString.call(a).slice(8,-1) //输出Number
/*判断一个元素是否在数组中*/ [1,2,3].indexOf(1) //输出0 [1,2,3].indexOf(4) //输出-1