这篇文章主要为大家详细介绍了js基本数据类型和typeof的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
#当弹出一个变量时:
var aa;alert(aa); //变量定义,弹出undefined
alert(aa); //变量未定义,undefined , 未定义的变量也是undefined
#当判断一个变量是否存在时:
var str;if( str == undefined ) //变量定义,可以这样判断
if( str == undefined ) //变量未定义,报错ReferenceError: str is not defined
/**
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
alert(typeof 1); // 返回字符串"number"
alert(typeof "1"); // 返回字符串"string"
alert(typeof true); // 返回字符串"boolean"
alert(typeof {}); // 返回字符串"object"
alert(typeof []); // 返回字符串"object "
alert(typeof function(){}); // 返回字符串"function"
alert(typeof null); // 返回字符串"object"
alert(typeof undefined); // 返回字符串"undefined"
本文来自:http://www.q1010.com/174/2574-0.html
注:关于js基本数据类型和typeof的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:数据类型,typeof
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。