Math、数组和 Date

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 - min + 1));
}

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

function getRandStr(n) {
    function random(min, max) {
        return min + Math.floor(Math.random() * (max - min));
    }
    var dict = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
    var str = '';
    for(var i = 0; i < n; i++) {
        str += dict[random(0,62)];
    }
    return str;
}

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

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

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

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

数组

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

  • push() 是向数组末端添加项并返回新数组长度的方法,pop() 是从数组末端移出最后一项并返回该项的方法,shift() 是从数组前端移出第一个项并返回该项的方法,unshift() 是从数组前端添加项并返回新数组长度的方法,这几种方法都会改变原始数组。
    -join(),方法将数组(或一个[类数组对象])的所有元素连接到一个字符串中。
  • splice() 方法通过删除现有元素和添加新元素来更改一个数组的内容 ,它的三个参数分别为 splice(删除位置, 删除数量, 添加的项)。
//用splice实现push
var fruits = ['banana', 'apple', 'orange'];
var removed = fruits.splice(fruits.length, 0, 'grape', 'watermelon');
console.log(removed);   //[]
console.log(fruits);    //["banana", "apple", "orange", "grape", "watermelon"]

//用splice实现pop
var fruits = ['banana', 'apple', 'orange'];
var removed = fruits.splice((fruits.length - 1), 1);
console.log(removed);    //["orange"]  
console.log(fruits);    //["banana", "apple"]

//用splice实现shift
var fruits = ['banana', 'apple', 'orange'];
var removed = fruits.splice(0, 1);
console.log(removed);    //["banana"] 
console.log(fruits);    //["apple", "orange"]

//用splice实现shift
var fruits = ['banana', 'apple', 'orange'];
var removed = fruits.splice(0, 0, 'grape', 'watermelon');
console.log(removed);   //[]
console.log(fruits);    //["grape", "watermelon", "banana", "apple", "orange"]

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

function squareArr(arr) {
    for (var i = 0; i < arr.length; i++) {
        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 result = arr.filter(function(item, index, array) {
        return parseInt(item) > 0;
    })
    return result;
}
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 seconds = totalSeconds % 60;
    var totalMinutes = Math.floor(totalSeconds / 60);
    var minutes = totalMinutes % 60;
    var totalHours = Math.floor(totalMinutes / 60);
    var hours = totalHours % 60;
    var totalDays = Math.floor(totalHours / 24);
    return '距离除夕还有 ' + totalDays + ' 天 ' + hours + ' 小时 ' + minutes + ' 分 ' + seconds + ' 秒';
}
var str = getChIntv("2018-02-15");
console.log(str);  //距离除夕还有 145 天 9 小时 51 分 8 秒

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

function getChsDate(str) {
    var dict = ['零','一','二','三','四','五','六','七','八','九','十',
        '十一','十二','十三','十四','十五','十六','十七','十八','十九','二十',
        '二十一','二十二','二十三','二十四','二十五','二十六','二十七','二十八','二十九',
        '三十','三十一']
    str = str.split('-');
    var year = str[0],
        month = str[1],
        day = str[2];
    year = year.split('').map(function (item,index,array) {
        return dict[item];
    });
    year = year.join('');
    month = dict[parseInt(month)];
    day = dict[parseInt(day)];
    return year + '年' + month + '月' + day + '日';
}


var str = getChsDate('2017-09-22');
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 offset = new Date - time;
    var second = 1000,
        minute = second * 60,
        hour = minute * 60,
        day = hour * 24,
        month = day * 30,
        year = day * 365;
    var t;
    if (offset < minute && offset >= second) {
        return '刚刚';
    } else if (offset < hour && offset >= minute) {
        t = Math.floor(offset / minute);
        return t + '分钟前';
    } else if (offset < day && offset >= hour) {
        t = Math.floor(offset / hour);
        return t + '小时前';
    } else if (offset < month && offset >= day) {
        t = Math.floor(offset / day);
        return t + '天前';
    } else if (offset < year && offset >= month) {
        t = Math.floor(offset / month);
        return t + '个月前';
    } else if (offset >= year) {
        t = Math.floor(offset / year);
        return t + '年前';
    }
}
var str = friendlyDate('1506094927000');
var str2 = friendlyDate('1483941245793');
console.log(str);     //2分钟前
console.log(str2);    //8个月前

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