js中的变量是没有类型的,只有值才有,变量可以随时持有任何类型的值。 var a = 42; typeof a; //number a = true; typeof a; //boolean typeof typeof a;//总是返回--string