知识点讲解 在JS中,有很多方法可以用来检测数据类型,它们各有优缺点。 typeof 先来看下 typeof 的用法: typeof 123 // 'number' typeof '123' // 'string' typeof undefined // 'undefined' typeof Symbol(1) //'symbol' typeof true // 'boolean' typeof {} // 'object' typeof function(){} // 'function' // ❗️❗️❗️注意 typeof null // 'object' typeof [] // 'o...