用typeof测试各种类型的返回结果

来源:互联网 发布:ssh连接阿里云服务器 编辑:程序博客网 时间:2024/06/07 05:44
typeof(true);//booleantypeof(undefined);//undefinedtypeof(null);//objecttypeof(NaN);//numbertypeof(1);//numbertypeof('1');//stringtypeof(Function);//functiontypeof(function);//报错



原创粉丝点击