Math任务
1、写一个函数,返回从min到max之间的 随机整数,包括min不包括max
function random1(min, max) {
return min + Math.floor(Math.random() * (max - min));
}
2、写一个函数,返回从min都max之间的 随机整数,包括min包括max
function random2(min, max) {
return min + Math.floor(Math.random() * (max - min + 1));
}
3、写一个函数,生成一个长度为 n 的随机字符串,字符串字符的取值范围包括0到9,a到 z,A到Z。
function getRandStr(len){
//补全函数
}
var str = getRandStr(10); // 0a3iJiRZap
function random1(min, max) {
return min + Math.floor(Math.random() * (max - min));
}
function getRandStr(len) {
var str1 = '';
var str = '0123456789qwertyuiopasdfghjklmnbvcxzQWERTYUIOPLKJHGFDSAZXCVBNM';
for(var i = 0; i < len; i++) {
str1 = str1 + str[random1(0,62)]
}
return str1;
}
var str = getRandStr(10);
4、写一个函数,生成一个随机 IP 地址,一个合法的 IP 地址为 0.0.0.0~255.255.255.255
function getRandIP(){
//补全
}
var ip = getRandIP()
console.log(ip) // 10.234.121.45
function random1(min, max) {
return min + Math.floor(Math.random() * (max - min));
}
function getRandIP() {
var arr = [];
for(var i = 0; i < 4; i++) {
arr.push(random1(0,256));
}
return arr.join('.');
}
var ip = getRandIP();
console.log(ip);
5、写一个函数,生成一个随机颜色字符串,合法的颜色为#000000~ #ffffff
function getRandColor(){
}
var color = getRandColor()
console.log(color) // #3e2f1b
function random1(min, max) {
return min + Math.floor(Math.random() * (max - min));
}
function getRandColor() {
var str = '0123456789abcdef';
var str1 = '#';
for(var i = 0; i < 6; i++) {
str1 = str1 + str[random1(0,16)]
}
return str1;
}
var color = getRandColor();
console.log(color);
数组任务
1、数组方法里push、pop、shift、unshift、join、splice分别是什么作用?用 splice函数分别实现push、pop、shift、unshift方法
var arr = [1,2,3,4];
arr.push(5); // 5 从数组的末尾添加元素,返回数组被添加后的长度
-------------
arr; // [1,2,3,4,5]
arr.pop(); // 5 从数组的末尾删除元素,返回的是删除的数组元素。
arr; // [1,2,3,4]
-------------
arr.shift(); // 1 从数组的开头删除元素,返回的是删除的数组元素。
arr; // [2,3,4]
---------
arr.unshift(0); // 4 从数组的开头添加元素,返回的是数组被添加后的长度
arr; // [0,2,3,4]
--------
arr.join('-') // "0-2-3-4" 将数组元素用'-'连接成字符串
--------
arr.splice(0,2,1,2); // [0,2] 返回的是删除的元素,第一个参数是数组的下标,
从这个元素(包括这个元素)删除,第二个参数是删除的元素个数,最后的参数表示,从删除位置开始添加的一些元素。
arr; [1,2,3,4]
----------
arr.splice(arr.length, 0, 添加的元素)
arr.push(添加的元素)
-------
arr.splice(arr.length-1,1);
arr.pop();
-------
arr.splice(0,1);
arr.shift();
-------
arr.splice(0,0,添加的元素)
arr.unshift(添加的元素)
2、写一个函数,操作数组,数组中的每一项变为原来的平方,在原数组上操作
function squareArr(arr){
}
var arr = [2, 4, 6]
squareArr(arr)
console.log(arr) // [4, 16, 36]
function squareArr(arr) {
for(var i = 0; i < arr.length; i++) {
arr[i] = arr[i] * arr[i];
}
}
var arr = [2, 4, 6];
squareArr(arr);
console.log(arr);
3、写一个函数,操作数组,返回一个新数组,新数组中只包含正数,原数组不变
function filterPositive(arr){
}
var arr = [3, -1, 2, '饥人谷', true]
var newArr = filterPositive(arr)
console.log(newArr) //[3, 2]
console.log(arr) //[3, -1, 2, '饥人谷', true]
function filterPositive(arr) {
return arr.filter(function(value) {
if(typeof value === "boolean") {
value = -1;
}
return value > 0;
})
}
var arr = [3, -1, 2, '饥人谷', true];
var newArr = filterPositive(arr);
console.log(newArr);
console.log(arr);
Date 任务
1、 写一个函数getChIntv,获取从当前时间到指定日期的间隔时间
var str = getChIntv("2017-02-08");
console.log(str); // 距除夕还有 20 天 15 小时 20 分 10 秒
function getChIntv(strDate) {
var targetTime = new Date(strDate);
var currentTime = new Date();
var totalSeconds = Math.floor(Math.abs(currentTime - targetTime)/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 '距2017年除夕已经过了' + days + '天' + hours + '小时' + minutes + '分钟' + seconds + '秒';
}
var str = getChIntv("2017-02-08");
console.log(str);
2、把hh-mm-dd格式数字日期改成中文日期
var str = getChsDate('2015-01-08');
console.log(str); // 二零一五年一月八日
function getChsDate(strDate) {
var str1 = '零一二三四五六七八九十';
var arr = strDate.split('-');
var str2 = arr[0];
var year = '';
if(arr[1][0] === '0') {
month = str1[arr[1][1]];
} else {
month = str1[10] + str1[arr[1][1]]
}
if(arr[2][0] == '0') {
day = str1[arr[2][1]];
} else {
day = str1[arr[2][0]] + str1[10] + str1[arr[2][1]]
}
for(var i = 0; i < str2.length; i++) {
year = year + str1[str2[i]];
}
return year + '年' + month + '月' + day + '日';
}
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 str = friendlyDate( '1484286699422' ) // 1分钟前
var str2 = friendlyDate('1483941245793') //4天前
function friendlyDate(time) {
var date = new Date();
var currentTime = date.getTime();
var totalSeconds = Math.floor(Math.abs(currentTime - time)/1000);
var totalMinutes = Math.floor(totalSeconds/60);
var totalHours = Math.floor(totalMinutes/60);
var totalDays = Math.floor(totalHours/24);
var totalMonths = Math.floor(totalDays/30);
if(totalSeconds < 60) {
return '刚刚';
} else if(totalMinutes>=1 && totalMinutes<60) {
return '3分钟前';
} else if(totalHours>=1 && totalHours<24) {
return '8小时前';
} else if(totalDays>=1 && totalDays<30) {
return '3天前';
} else if(totalMonths>=1 && totalMonths<12) {
return '2个月前';
} else if(totalsMonths >= 12) {
return '8年前';
}
}
var str = friendlyDate( '1484286699422' ) // 2个月前
console.log(str);
var str2 = friendlyDate('1483941245793') // 2个月前
console.log(str2);