说明:js基础面试题
1、js 的类型
1.认识js的基本类型
> typeof undefined, //undefined
typeof 'abc' ,//string
typeof 123 ,//number
typeof true ,//boolean
typeof {} ,//object
typeof [] ,//object
typeof null ,//object
typeof console.log ,//function
typeof Symbol(1) // symbo
<Huang58_com> 在 上传 | 大小:3072