六种数据类型:

  undefined 、 boolean  、string 、number 、object 、function

js六种数据类型-LMLPHP

效果地址:https://scrimba.com/c/cEedDGTd

代码:

var a;
console.log(typeof a); // undefined var b=true;
console.log(typeof b); // boolean var c='我是字符串';
console.log(typeof c); // string var d=3;
console.log(typeof d); // number console.log(typeof NaN,NaN); // number NaN
// 创建object的第一种方法 
var e1=new Object();
e1.name = '小猫咪';
console.log(typeof e1); // object // 创建object的第二种方法
var e2={ name: 'ha' }
console.log(typeof e2); // object // null
var e_null = null;
console.log(typeof e_null); // object // array 数组
var e_array=[1,3,5]
console.log(typeof e_array); // object function add(){ return 1; }
console.log(typeof add); // function
05-11 22:05