Math数组Date

Math任务

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

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

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

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

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

function getRandStr(len){
   var dict = '123456789qwertyuioplkjhgfdsazxcvbnmQAZXSWEDCVFRTGBNHYUJMKIOLP';
   var str = "";
   for(var i=0; i

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()*255));
  }
  return arr.join(".");
}
var ip = getRandIP()
console.log(ip)

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

function getRandColor(){
    var dict = "1234567890abcdef";
    var str = "";
    for(var i = 0; i<6; i++){
        str += dict[Math.floor(Math.random()*dict.length)];
    }
    return "#"+str; 
}
var color = getRandColor()
console.log(color)

数组任务

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

push:在数组的末尾添加一个或者多个元素,并返回新的长度;
pop:删除数组的最后一个元素,并返回该元素的值;
shift:删除数组的第一个元素,并返回该元素的值;
unshift:将一个或多个元素添加到数组的开头,并返回新数组的长度;
join:将数组的(或者一个类数组对象)的所用元素链接到一个字符串中;
splice:通过删除现有元素和/或添加新元素来更改一个数组的内容;

var arr = [0,1,2,3]
arr.splice(arr.length,0,4)//push
console.log(arr)//[0,1,2,3,4]
arr.splice(arr.length,1)//pop
console.log(arr)//[0,1,2,]
arr.splice(0,1)//shift
console.log(arr)//[1, 2, 3]
arr.splice(0,0,0)//unshift
console.log(arr)//[0, 0, 1, 2, 3]

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

function squareArr(arr){
    for(var i in arr){
        arr[i] =Math.pow(arr[i],2);
    }
    return arr;
}
var arr = [2, 4, 6]
squareArr(arr)
console.log(arr) // [4, 16, 36]

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

function filterPositive(arr){
    var newArr = [];
    for(var i=0; i0){
            newArr.push(arr[i]);
        }
    }
    return newArr;
}
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(dateStr){
    var targetDate = new Date(dateStr)
    var curDate = new Date()
    var offset = Math.abs(targetDate-curDate)
    var totalSeconds = Math.floor(offset/1000)
    var second = totalSeconds%60
    var totalMinutes = Math.floor((offset/1000)/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 + "分钟" + second + "秒"
}
var str = getChIntv("2017-02-08");
console.log(str);

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

function getChsDate(str){
    var dist = ["零","一","二","三","四","五","六","七","八","九","十","十一","十二","十三","十四","十五","十六","十七","十八","十九","二十","二十一","二十二","二十三","二十四","二十五","二十六","二十七","二十八","二十九","三十","三十一"];
    var arr =str.split('-')
    var year = arr[0]
    var month = arr[1]
    var day = arr[2]
    var Chyear = dist[parseInt(year[0])] + dist[parseInt(year[1])] + dist[parseInt(year[2])] +dist[parseInt(year[3])] + '年';
    var Chmonth = dist[parseInt(month)] + '月';
    var Chday = dist[parseInt(day)] + '日';
    return Chyear + Chmonth + Chday ;
}
var str = getChsDate('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 now = Date.now();
var offset = (now - parseInt(time)) / 1000 / 60; 
var result;
if ((offset / 60 / 24 / 30 / 12) >= 1 ) {
  result = parseInt(offset / 60 / 24 / 30 / 12) + "年前";
}else if ((offset / 60 / 24 / 30) >= 1  ) {
  result = parseInt(offset / 60 / 24 / 30) + "个月前"; 
}else if ((offset / 60 / 24 ) >=1 ) {
    result = parseInt(offset / 60 / 24) + "天前";
}else if ((offset / 60 ) >=1) {
    result = parseInt(offset / 60 ) + "小时前";
}else if (offset >=1) {
    result = parseInt(offset) + "分钟前";
}else if (offset <1) {
    result = "刚刚";
}
return result;
}
var str = friendlyDate( '1484286699422' ) //  1分钟前
var str2 = friendlyDate('1483941245793') //4天前

【个人总结,如有错漏,欢迎指出】
:>

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