首页 > 网站 > WEB开发 > 正文

typeof 使用介绍

2024-04-27 14:13:12
字体:
来源:转载
供稿:网友

typeof 使用介绍

JS中的变量是松散类型(即弱类型)的,可以用来保存任何类型的数据。

typeof 可以用来检测给定变量的数据类型,可能的返回值:1. 'undefined' --- 这个值未定义;

2. 'boolean' --- 这个值是布尔值;

3. 'string' --- 这个值是字符串;

4. 'number' --- 这个值是数值;

5. 'object' --- 这个值是对象或null;

6. 'function' --- 这个值是函数。

var aa = 'test string';   alert(typeof aa);  // 'string'   alert(typeof 90);  // 'number'


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表