// 如果要对一个数据进行精确的操作,第一步就是判断它的数据类型
// 1.原始类型
数值:整数,小数
字符串,使用引号当定界符:"zhu"
布尔值:false,true
undefined:未定义
null:空
typeof: 专用于原始类型的检测 如console.log(typrof 100);
// 2.引用类型/对象
// 函数也是对象,函数也可以用来当成值来传递和引用,后面要用到回调,就是用函数做参数
function hello(a, b, c) {}
console.log(typeof hello);
// instanceof: 专用于引用类型的类型检测// console.log(hello instanceof function );
// 只要是对象就可以添加属性和方法 console.log(hello);
// console.dir(); 打印对象完整的信息 console.log(hello);
// 2.对象
const person ={ name:"zhulaoshi", gender:"male", job:"lecture", getName:function() { return this.name; }