const u = undefined; // 这里其实不必要显示赋值为undefined,为了demo更加明显才赋值
const n = null;
const s = 'string';
const num = 100;
const bo = true;
const sy = Symbol('symbol');
const ob = new Object();
const arr = new Array();
const fun = () => {}
console.log(`u的数据类型:${typeof u}`);
console.log(`n的数据类型:${typeof n}`);
console.log(`s的数据类型:${typeof s}`);
console.log(`num的数据类型:${typeof num}`);
console.log(`bo的数据类型:${typeof bo}`);
console.log(`sy的数据类型:${typeof sy}`);
console.log(`ob的数据类型:${typeof ob}`);
console.log(`arr的数据类型:${typeof arr}`);
console.log(`fun的数据类型:${typeof fun}`);
console