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 random(min,max){
return min+Math.floor(Math.random()*(max-min));
}
function getRandStr(len){
//补全函数
var dict = "0123456789"
+"abcdefghijklmnopqrstuvwxyz"
+"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
var str = "";
for(var i=0;i<len;i++){
str += dict[random(0,62)];
}
return str;
}
4、写一个函数,生成一个随机 IP 地址,一个合法的 IP 地址为 0.0.0.0~255.255.255.255
function random(min,max){
return min+Math.floor(Math.random()*(max-min)); }
function getRandIP(){
//补全
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 random(min,max){
return min+Math.floor(Math.random()*(max-min)); }
function getRandColor(){
var str = "#";
var dict = "0123456789abcdef"
for(var i =0;i<6;i++){
str += dict[random(0,16)];
}
return str;
}
var color = getRandColor()
console.log(color) // #3e2f1b
数组任务
1、数组方法里push、pop、shift、unshift、join、splice分别是什么作用?用 splice函数分别实现push、pop、shift、unshift方法
push和pop 属于栈方法
push的作用是可以接受任意数量的参数,把它们逐个添加到末尾,返回修改后的数组的长度
pop的作用是移除数组的最后一项,返回移除的项
unshift 和 shift 属于队列方法
unshift的作用是可以接受任意数量的参数,把它们添加到数组前端,返回修改后的数组的长度
shift的作用是移除数组的第一项,返回移除的项
用splice函数实现
例
var arr = [1,2,3,4,5,6];
arr.splice(arr.length,0,"要添加内容")// 模拟push()
arr.splice(arr.length-1,1) //模拟pop()
arr.splice(0,0,"要添加内容") //模拟unshift()
arr.splice(0,1) //模拟shift()
2、写一个函数,操作数组,数组中的每一项变为原来的平方,在原数组上操作
function squareArr(arr){
for(var i =0;i<arr.length;i++){
arr[i] *=arr[i]
}
return arr;
}
var arr = [2, 4, 6]
squareArr(arr)
console.log(arr) // [4, 16, 36]
3、写一个函数,操作数组,返回一个新数组,新数组中只包含正数,原数组不变
function filterPositive(arr){
var newArr = arr.filter(function(value){
if( typeof value === 'number'){
return value > 0;}
})
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 targetTime = new Date(dateStr);
var now = new Date();
var offset = Math.abs(now-targetTime);
var totalSeconds = Math.floor(offset/1000);
var seconds = 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+"分"+seconds+"秒"
}
var str = getChIntv("2017-08-31");
console.log(str); //
2、把hh-mm-dd格式数字日期改成中文日期
function getChsDate(inputDate) {
var dict = ["零", "一", "二", "三", "四", "五", "六", "七", "八", "九", "十", "十一", "十二", "十三", "十四", "十五", "十六", "十七",
"十八", "十九", "二十", "二十一", "二十二", "二十三", "二十四", "二十五", "二十六", "二十七", "二十八", "二十九", "三十", "三十一"];
var arr = inputDate.split('-'); // 从'-'处把字符串分割成字符串数组
var arrYear = arr[0].split(''); // 将年份分割成数组
// [ '2', '0', '1', '7' ]
var strYear = '';
for (var i = 0; i < 4; i++) {
strYear += dict[parseInt(arrYear[i])];
}
var strMonth = dict[parseInt(arr[1])];
var strDate = dict[parseInt(arr[2])];
return strYear + '年' + strMonth + '月' + strDate + '日';
}
var result = getChsDate('2017-08-27');
console.log(result);
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(inputTime) {
var curTime = new Date();
var nowTime = curTime.getTime();
var offsetMinute = Math.floor(Math.abs(nowTime -inputTime) / 1000 / 60);
var offsetTime;
if (offsetMinute < 1) {
offsetTime = '刚刚';
} else if (offsetMinute < 60) {
offsetTime = offsetMinute + '分钟前';
} else if (offsetMinute < 1440) {
offsetTime = Math.floor(offsetMinute / 60) + '小时前';
} else if (offsetMinute < 43200) {
offsetTime = Math.floor(offsetMinute / 60 / 24) + '天前';
} else if (offsetMinute < 518400) {
offsetTime = Math.floor(offsetMinute / 60 / 24 / 30) + '个月前';
} else {
offsetTime = Math.floor(offsetMinute / 60 / 24 / 30 / 12) + '年前';
}
return offsetTime;
}
var str = friendlyDate('1483200000000');
console.log(str);