Posted in Javascript onDecember 19, 2013
<html> <head> <title>javascript中typeof的使用</title> <script> //1、基本类型 var x = 123; var y = "abc"; var z = true; //alert(typeof x);//number //alert(typeof y);//string //alert(typeof z);//boolean //2、引用类型,类型是object var arr = new Array(); var date = new Date(); var str = new String("abc"); //alert(typeof arr);//object //alert(typeof date);//object //alert(typeof str);//object //3、对象类型,可以理解为javascript中的类的模拟是通过function来实现的 alert(typeof Array);//function alert(typeof Date);//function alert(typeof String);//function </script> </head> <body> </body> </html>
javascript中typeof的使用示例
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@