js:内置对象(Math、Date、Array、String等)

1、查阅文档

(1)MDN文档:https://developer.mozilla.org/zh-CN/

在MDN文档搜索函数名:

js:内置对象(Math、Date、Array、String等)_第1张图片

 

 

 查看需要的函数即可:

js:内置对象(Math、Date、Array、String等)_第2张图片

 

 

 

2、Math

(1)搜索关键字Math,可以先查看Math的相关介绍

js:内置对象(Math、Date、Array、String等)_第3张图片

 

 

 介绍:包含描述、属性、方法、规范、兼容性等

js:内置对象(Math、Date、Array、String等)_第4张图片

 

 

 (2)使用Math的属性

查看文档说明:

js:内置对象(Math、Date、Array、String等)_第5张图片

 

 

 简单使用:

  

 

 

(3)使用Math的方法

查看文档:

js:内置对象(Math、Date、Array、String等)_第6张图片

 

 

 简单使用:

 

测试:

 

 

 (4)自定义对象

 

 

 

3、日期对象

与Math对象不同,Date对象实例化之后才能使用

(1)实例化

  

 

 

 (2)方法

获取年月日、时分秒:

          var date=new Date();
          console.log(date.getFullYear());
          console.log(date.getMonth()+1);//月份加1
          console.log(date.getDay());//周日返回0

获取毫秒数:距离1970年

   

 

 

 

4、数组对象:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Array

5、string对象:https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/String

string是一个包装类型,将简单的数据类型包装为复杂数据类型

字符串是不可变的,频繁地修改会造成内存的浪费

 

你可能感兴趣的:(js:内置对象(Math、Date、Array、String等))