博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS学习笔记——标准对象
阅读量:4976 次
发布时间:2019-06-12

本文共 1998 字,大约阅读时间需要 6 分钟。

一、对象

  在js中万物皆对象。

 

二、对象类型

  number、string、boolean、undefined、function、object等

  用typeof来获取对象的类型

  如:

    alert( typeof 123 );     //number

    alert( typeof NaN );     //number

    alert( typeof 'str' );     //string

    alert( typeof true );     //boolean

    alert( typeof undefined );     //undefined

    alert( typeof Math.abs );     //function

    alert( typeof null );     //object

    alert( typeof [] );     //object

    alert( typeof {} );     //object

 

三、包装对象

  1.包装对象

    number、boolean、string都有包装对象,包装对象用new创建。包装对象后,值不变,但是类型都变为object。

    如:

    var num = new Number(123);

    var bool = new Boolean(true);

    var str = new String('abc');

    最好不要使用包装对象,尤其是string类型。

  2.在使用Number、Boolean、String时,没有使用new,此时只是相当于数据类型转换。

    var num = Number('123');   //123,相当于parseInt()或parseFloat()

    alert( typeof num );  //number

    var bool = Boolean('true');  //true

    alert( typeof bool );  //boolean

    var bool2 = Boolean('false');  //true     非空字符串都是true

    var bool3 = Boolean('');  //false

    var str = String(123.45);  //'123.45'

    alert( typeof str );  //string

 

四、需要注意的点

  • 不要使用new Number()new Boolean()new String()创建包装对象;

  • parseInt()parseFloat()来转换任意类型到number

  • String()来转换任意类型到string,或者直接调用某个对象的toString()方法(null和undefined没有该方法;number对象使用toString()方法需要特殊处理:123..toString();或(123).toString(););

  • 通常不必把任意类型转换为boolean再判断,因为可以直接写if (myVar) {...}

  • typeof操作符可以判断出numberbooleanstringfunctionundefined

  • 判断Array要使用Array.isArray(arr)

  • 判断null请使用myVar === null

  • 判断某个全局变量是否存在用typeof window.myVar === 'undefined'

  • 函数内部判断某个变量是否存在用typeof myVar === 'undefined'

五、Date

  1.在javascript中,Date对象用来表示日期和时间。

  var now = new Date();  now; // Wed Jun 24 2015 19:49:22 GMT+0800 (CST)  now.getFullYear(); // 2015, 年份  now.getMonth(); // 5, 月份,注意月份范围是0~11,5表示六月   now.getDate(); // 24, 表示24号   now.getDay(); // 3, 表示星期三   now.getHours(); // 19, 24小时制   now.getMinutes(); // 49, 分钟   now.getSeconds(); // 22, 秒   now.getMilliseconds(); // 875, 毫秒数   now.getTime(); // 1435146562875, 以number形式表示的时间戳

转载于:https://www.cnblogs.com/liyo/p/4760882.html

你可能感兴趣的文章
Win10+Anaconda3+Eclipse+Django+MySQL 配置Python的Web开发环境
查看>>
类方法使用
查看>>
Get Luffy Out poj 2723 Tarjan+2-SAT
查看>>
Wild Number (Standard IO)
查看>>
在Visual Studio 2005中调试SQL Server 2005的存储过程
查看>>
浅析C#基于TCP协议的SCOKET通信
查看>>
文件资源使用Texture管理cocosBuilder项目资源:纹理文件使用(TexturePacker)
查看>>
Java Web应用CAS Client端的配置详解
查看>>
MapGIS计算瓦片数据集
查看>>
你最美好的年华
查看>>
中兴MF667S WCDMA猫Linux拨号笔记
查看>>
jQuery
查看>>
探究绑定事件的this指向以及event传参的小问题
查看>>
BOM window对象 localtion navigator
查看>>
Linux的.pid文件
查看>>
unity性能优化-CPU
查看>>
使用ssh正向连接、反向连接、做socks代理的方法
查看>>
IOS AppStore介绍图的尺寸大小(还有一些自己被拒的分享...)
查看>>
Android 实现在线程中联网
查看>>
Akka(30): Http:High-Level-Api,Routing DSL
查看>>