小白学JavaScript_day01_数据类型
//数字
let age = 22;
//字符串类型
let name = '22';
//布尔值
let hi = true
//空null
let nu = null;
//undefind;
let nud
console.log(age, name, hi, nu, nud);
基本数据类型有五种:
分别是 数字类型 字符串类型 布尔值 null undefind
输出结果
判断字符串类型操作
// typeof获取数据类型
let a = 1;
let b = 'b';
let c = true;
let d = null;
let e;
console.log(typeof a);//输出number
console.log(typeof b);//输出string
console.log(typeof c);//输出boolean
console.log(typeof d);//输出object
console.log(typeof e);//输出undefined