js数据类型

总结如下:

1.数据类型

1.1基本的数据类型(值类型)

- string
- num
- boolean
- null
- undefined

1.2对象(引用)数据类型
- Object
- Function
- Array

2.数据类型判断

- typeof (返回一个字符串)
	e.g console.log(typeof 1)  // ‘number‘
- instanceof (返回一个布尔值)
	e.g console.log(arr instanceof Array)  // true
- ===

注: console.log(type null)  // ‘object‘

js数据类型

上一篇:CKA-Kubernets(K8s) (四)


下一篇:js中onkeydown回车触发事件的几种方法