1. 首页
  2. 操作系统
  3. Ubuntu
  4. js的各种数据类型判断的介绍

js的各种数据类型判断的介绍

上传者: 2020-12-03 09:45:52上传 PDF文件 41.1KB 热度 18次
1.typeof typeof 用来判断各种数据类型,有两种写法:typeof xxx , typeof(xxx) 例如: typeof 2 输出 number typeof null 输出 object typeof {} 输出 object typeof [] 输出 object typeof (function(){}) 输出 function typeof undefined 输出 undefined typeof '222' 输出 string typeof true 输出 boolean 这里面包含了js里面的五种数据类型 number、string、boolean、 undef
用户评论