美文网首页
Math数组Date

Math数组Date

作者: cctosuper | 来源:发表于2017-11-05 22:41 被阅读0次

    Math任务

    1、写一个函数,返回从min到max之间的 随机整数,包括min不包括max

    function random(min, max){
      return min + Math.floor(Math.random() * (max - min))
    }
    

    2、写一个函数,返回从min都max之间的 随机整数,包括min包括max

    function random(min, max){
      return min + Math.floor(Math.random() * (max + 1 - min))
    }
    

    3、写一个函数,生成一个长度为 n 的随机字符串,字符串字符的取值范围包括0到9,a到 z,A到Z。

    function getRandStr(len){
      var dict = '0123456789abcdefghijklmnopqrstuvwxyz\
    ABCDEFGHIJKLMNOPQRSTUVWXYZ'
      var newstr = ''
        for(var i=0; i<len; i++){
          newstr += dict[Math.floor(Math.random() * 62)]
        }
      return newstr
    }
    var str = getRandStr(10); // 0a3iJiRZap
    

    4、写一个函数,生成一个随机 IP 地址,一个合法的 IP 地址为 0.0.0.0~255.255.255.255

    function getRandIP(){
      var arr = []
      for(var i=0; i<4; i++){
        arr.push(Math.floor(Math.random() * 256))
      }
      return arr.join('.')
    }
    var ip = getRandIP()
    console.log(ip) // 10.234.121.45
    

    5、写一个函数,生成一个随机颜色字符串,合法的颜色为#000000~ #ffffff

    function getRandColor(){
      var dict = '0123456789abcdef'
      var str = '#'
      for(var i=0; i<6; i++){
        str += dict[Math.floor(Math.random() * 16)]
      }
      return str
    }
    var color = getRandColor()
    console.log(color)   // #3e2f1b
    

    数组任务

    1、数组方法里push、pop、shift、unshift、join、splice分别是什么作用?用 splice函数分别实现push、pop、shift、unshift方法

    push方法,用于向数组尾部添加一个元素;
    pop方法,可以删除数组index最大元素,并使length也减一;
    shift方法可以删除数组index最小元素,并使后面元素index都减一,length也减一;
    unshift方法,用于向数组头部添加一个元素;

    function spPush(arr,ele){
      arr.splice(arr.length, 0, ele)  
      return arr.length
    }  //模拟push
    function spPop(arr){
      return arr.splice(-1, 1)
    }  //模拟pop
    function spshi(arr,ele){
      a.splice(0,0,ele)
      return arr.length
    }  //模拟unshift
    function spunshi(arr){
      return a.splice(0,1)
    }  //模拟shift
    

    2、写一个函数,操作数组,数组中的每一项变为原来的平方,在原数组上操作

    function squareArr(arr){
      for(var i=0; i<arr.length; i++){
        arr[i] = arr[i]*arr[i]
      }
      return arr
    }
    var arr = [2, 4, 6]
    squareArr(arr)
    console.log(arr) // [4, 16, 36]
    

    3、写一个函数,操作数组,返回一个新数组,新数组中只包含正数,原数组不变

    function filterPositive(arr){
      return arr.filter(function(ele){
         return (typeof ele == 'number' &&  ele > 0)
      })
    }
    var arr = [3, -1,  2,  '饥人谷', true]
    var newArr = filterPositive(arr)
    console.log(newArr) //[3, 2]
    console.log(arr) //[3, -1,  2,  '饥人谷', true]
    

    Date 任务

    1、 写一个函数getChIntv,获取从当前时间到指定日期的间隔时间

    function getChIntv(time){
      var target = new Date(time)
      var now = new Date()
      var totalseconds = Math.floor(Math.abs(target - now) / 1000)
      var seconds = totalseconds % 60
      var totalminutes = Math.floor(totalseconds / 60)
      var minutes = totalminutes % 60
      var totalhours = Math.floor(totalminutes / 60)
      var hours = totalhours % 24
      var days = Math.floor(totalhours / 24)
      return '距除夕还有' + days + '天' + hours + '小时' + minutes + '分' + seconds + '秒'
    }
    var str = getChIntv("2017-02-08");
    console.log(str);  // 距除夕还有 20 天 15 小时 20 分 10 秒
    

    2、把hh-mm-dd格式数字日期改成中文日期

    function getChDate(datestr){
      var dict = ['零', '一', '二', '三', '四', '五', '六', '七','八','九', '十', '十一', '十二', '十三', '十四', '十五', '十六','十七', '十八', '十九', '二十', '二十一', '二十二', '二十三','二十四', '二十五', '二十六', '二十七', '二十八', '二十九','三十', '三十一']
      var tarDate = new Date(datestr)
      var Date = tarDate.getDate().toString()
      var month = tarDate.getMonth()
      var year = tarDate.getFullYear().toString()
      var ChDate = ''
      for(var i=0;i<4;i++){
        ChDate += dict[year[i]]
      }
      return ChDate + '年' + dict[month+1] + '月' + dict[Date] + '日'
    }
    var str = getChDate('2015-01-08');
    console.log(str); 
    

    3、写一个函数,参数为时间对象毫秒数的字符串格式,返回值为字符串。假设参数为时间对象毫秒数t,根据t的时间分别返回如下字符串:

    /*
    刚刚( t 距当前时间不到1分钟时间间隔)
    3分钟前 (t距当前时间大于等于1分钟,小于1小时)
    8小时前 (t 距离当前时间大于等于1小时,小于24小时)
    3天前 (t 距离当前时间大于等于24小时,小于30天)
    2个月前 (t 距离当前时间大于等于30天小于12个月)
    8年前 (t 距离当前时间大于等于12个月)
    */
    function friendlyDate(time){
      var preDate = new Date(Number(time))
      var curDate = new Date()
      var offset = Math.floor(Math.abs(curDate - preDate) / 1000)
      var result
      if(offset / 60 / 60 / 24 / 30 /12 >= 1){
        result = Math.floor(offset / 60 / 60 / 24 / 30 / 12) +'年前'
      }else if(offset / 60 / 60 / 24 / 30 >= 1){
        result = Math.floor(offset / 60 / 60 / 24 / 30) +'个月前'
      }else if(offset / 60 / 60 / 24 >= 1){
        result  Math.floor(offset / 60 / 60 /24) + '天前'
      }else if(offset / 60 / 60 >= 1){
        result Math.floor(offset / 60 / 60) + '小时前'
      }else if(offset / 60 >= 1){
        result Math.floor(offset / 60) + '分钟前'
      }else {
        result '刚刚'
      }
      return result
    }
    var str = friendlyDate( '1484286699422' ) //  1分钟前
    var str2 = friendlyDate('1483941245793') //4天前
    

    相关文章

      网友评论

          本文标题:Math数组Date

          本文链接:https://www.haomeiwen.com/subject/kkjhmxtx.html