js如何对类型进行判断
1、判断引用类型和基本类型不同,判断基本类型可以使用typeof。
typeof对于引用类型,除了函数返回function外,还返回object。但是,我们开发的数组必须返回array类型,typeof对引用类型不太适用。
typeof 1 // 'number'typeof '1' // 'string'
typeof undefined // 'undefined'
typeof true // 'boolean'
typeof Symbol() // 'symbol'
typeof null // 'object'
2、判断引用类型通常使用instanceof。
var obj = {}var arr = []
var fun = () => {}
typeof obj // 'object'
typeof arr // 'object'
typeof fun // 'function'
obj instanceof Object // true
arr instanceof Array // true
fun instanceof Function // true
以上就是js对类型进行判断的方法,希望对大家有所帮助。更多js学习指路:js教程
推荐操作环境:windows7系统、jquery3.2.1版本,DELL G3电脑。
以上是 js如何对类型进行判断 的全部内容, 来源链接: utcz.com/z/544656.html