JavaScript常用的Date()对象

  • Date() 返回当日的日期和时间。 通过new 方法创建对象。
  • getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31)。
  • getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6)。
  • getMonth() 从 Date 对象返回月份 (0 ~ 11)。
  • getFullYear() 从 Date 对象以四位数字返回年份。
  • getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6)。 0代表的事星期日。
  • getHours() 返回 Date 对象的小时 (0 ~ 23)。
  • getMinutes() 返回 Date 对象的分钟 (0 ~ 59)。
  • getSeconds() 返回 Date 对象的秒数 (0 ~ 59)。

JavaScript常用的Math对象

  • Math.ceil() 向上取整,天花板函数

    • 如果是整数,取整之后是这个数本身
    • 如果是小数,对数进行向上舍入。
  • Math.floor() 向下取整, 地板函数。

    • 如果是整数,取整之后是这个数本身
    • 如果是小数,对数进行向下舍入。
  • Math.max(n1,n2) 取两个数的最大值。
  • Math.min(n1,n2)取两个数的最小值。
  • Math.pow(n1,n2)返货n1的n2次方。
  • Math.round() 进行四舍五入操作。
  • Math.random()返回0-1之间的随机数。
  • Math.abs(number)返回一个数字的绝对值(即该值不考虑数字是为正还是为负)。
Last modification:April 12, 2018
If you think my article is useful to you, please feel free to appreciate