一、数据类型判断
例子:
var a = 100; //定义了一个变量a,并且赋值100
var b = true;
var c = "hello";
var d = ‘k‘;
console.log(typeof a); //输出a变量的类型
console.log(typeof a);
console.log(typeof a);
console.log(typeof a);
时间: 2024-10-18 13:38:48
一、数据类型判断
例子:
var a = 100; //定义了一个变量a,并且赋值100
var b = true;
var c = "hello";
var d = ‘k‘;
console.log(typeof a); //输出a变量的类型
console.log(typeof a);
console.log(typeof a);
console.log(typeof a);