Math数组Date

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

function getRandom(min, max) {
    return min + Math.floor(Math.random() * (max - min));
}
console.log(getRandom(10, 20));

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

function getRandom(min,max){
      return  Math.floor( min +  Math.random()*(max-min+1));
   } 
console.log(getRandom(10,20));

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

function getRandStr(len){
  var dict = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
  var str = '';
  for(var i = 0; i < len; i++) {
    var num = Math.floor(Math.random() * 62);
    str += dict[num];
  }
  return str;
}
var str = getRandStr(10); 
console.log(str);

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

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

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

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

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

  • push():将一个或多个元素添加到数组的末尾,并返回数组的新长度。
  • pop():从数组中删除最后一个元素,并返回该元素。
  • shift():删除数组的第一个元素,并返回该元素
  • unshift():将一个或多个元素添加到数组的开头,并返回新数组的长度
  • join():返回字符串值,其中包含了连接到一起的数组的所有元素,元素由指定的分隔符分隔开来。
  • splice(): 在任意的位置给数组添加或删除任意个元素。

splice函数实现push()

var arr = [1,2,3,4];
arr.splice(arr.length,0,5); 
console.log(arr);   //  [1,2,3,4,5]

splice函数实现pop()

var arr = [1,2,3,4];
arr.splice(arr.length-1,,1);
console.log(arr);   //  [1,2,3]

splice函数实现shift()

var arr = [1,2,3,4];
arr.splice(0,1); 
console.log(arr);   //  [2,3,4]

splice函数实现unshift()

var arr = [1,2,3,4];
arr.splice(0,0,0); 
console.log(arr);   //  [0,1,2,3,4]

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

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]

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

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

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

function getChIntv(dateStr) {
    var targetDate = new Date(dateStr);
    var curDate = new Date();
    var offset = Math.abs(targetDate - curDate);
    var totalSeconds = Math.floor(offset / 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 totalDays = Math.floor(totalHours / 24);
    return '距离情人节还有' + totalDays + '天' + hours + '小时' + minutes + '分' + seconds + '秒';

}

var str = getChIntv("2018-02-14");
console.log(str); // 距离情人节还有67天9小时13分15秒

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

function getChsDate(n){
    var dict=["零","一","二","三","四","五","六","七","八","九","十","十一","十二","十三","十四",
"十五","十六","十七","十八","十九","二十","二十一","二十二","二十三","二十四","二十五",
"二十六","二十七","二十八","二十九","三十","三十一"];
          var arr=n.split("-");
          var strYear=String(arr[0]);
          var strMonth=String(arr[1]);
          var strDay=String(arr[2]);
          var chsYear="";
          var chsMonth="";
          var chsDay="";
          for(var i=0;i<4;i++){
            chsYear=chsYear+dict[strYear[i]];
          }
            if(strMonth[0]===0){
              chsMonth=dict[strMonth[1]];
            }else{
              chsMonth=dict[Number(strMonth)];
            }
             if(strDay[0]===0){
              chsDay=dict[strDay[1]];
            }else{
              chsDay=dict[Number(strDay)];
            }
           return chsYear+"年"+chsMonth+"月"+chsDay+"日";
           }

var str = getChsDate('2017-12-08');
console.log(str);//二零一七年十二月八日

写一个函数,参数为时间对象毫秒数的字符串格式,返回值为字符串。假设参数为时间对象毫秒数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 curDate = new Date().getTime();
  var offset = Math.abs(curDate-time);
  var seconds = Math.floor(offset/1000);
  var minutes = Math.floor(seconds/60);
  var hours = Math.floor(minutes/60);
  var days = Math.floor(hours/24);
  var months = Math.floor(days/30);
  var years = Math.floor(months/12);
  if (seconds<60) {
    return "刚刚";
  }else if (1 <= minutes && minutes< 60) {
    return "3分钟前";
  }else if (1 <= hours && hours< 24) {
    return "8小时前";
  }else if (1 <= days&& days< 30) {
    return "3天前";
  }else if (1 <= months&& months< 12) {
    return "2个月前";
  }else if (1 <= years) {
    return "8年前";
  }
}
var str = friendlyDate( '1484286699422' ) 
console.log(str) ; //  2个月前
var str2 = friendlyDate('1483941245793') 
console.log(str) ; // 2个月前

你可能感兴趣的:(Math数组Date)