当前位置:   article > 正文

educoder头歌实训 web课程————JavaScript对象:Math、日期_头哥javascript学习手册十二:math、日期和异常处理

头哥javascript学习手册十二:math、日期和异常处理

 educoder太原理工web程序设计——移动端电商页面制作_玛卡巴卡的博客-CSDN博客

第1关:Math类

任务描述

本关任务:练习使用Math类的常用方法。

相关知识

Math用于进行数学计算,没有构造函数。

  1. function mainJs(a) {
  2. a = parseInt(a);
  3. //请在此处编写代码
  4. /********** Begin **********/
  5. return Math.min(Math.ceil(a),
  6. Math.floor(a),
  7. Math.round(a),
  8. Math.sqrt(a),
  9. Math.sin(a))+Math.max(Math.ceil(a),
  10. Math.floor(a),
  11. Math.round(a),
  12. Math.sqrt(a),
  13. Math.sin(a))
  14. /********** End **********/
  15. }

第2关:Date类

任务描述

本关任务:练习时间日期工具类的使用。

相关知识

Date类用于处理日期和时间。

  1. function mainJs(a) {
  2. a = parseInt(a);
  3. var date = new Date(a);
  4. /*********Begin*********/
  5. var b=date.getFullYear();
  6. var c=date.getMonth();
  7. var d=date.getDate();
  8. var e=date.getDay();
  9. return b+","+c+","+d+","+e;
  10. /*********End*********/
  11. }

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号