数据类型的一些测试

来源:互联网 发布:年终总结数据分析 编辑:程序博客网 时间:2024/06/11 03:47
// 三大基础类型// var str='ni';// alert(typeof str);//string// var x=4;// alert(typeof x);//number//          var t=true;//          alert(typeof t);//Boolean// 其他基础类型// var x=undefined;// alert(typeof x);//undefined// var y=null;// alert(typeof y);//object// 引用类型// function go(){}// alert(typeof go);//function// 其他内置对象的实例对象(自定义对象,原生对象)var arr=[4,7,90];// alert(typeof arr);//objectalert(arr instanceof Array);//true// instanceof 可以判断是哪个对象的实例值得一提的是 js中的内置对象(原生对象) 数据类型是function

原创粉丝点击