Math任务
1、写一个函数,返回从min到max之间的 随机整数,包括min不包括max
//这是一个0到10的随机数,不包括10
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min)) + min; }
getRandomInt(0, 10)
2、写一个函数,返回从min都max之间的 随机整数,包括min包括max
//这是一个0到10的随机数,包括0和10.
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min+1)+min); }
getRandomInt(0, 10)
3、写一个函数,生成一个长度为 n 的随机字符串,字符串字符的取值范围包括0到9,a到 z,A到Z。
function getRandStr(numb){
var str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
var getStr = "";
for(var i = 0;i <numb;i++){
var getNumb = Math.floor(Math.random()*62);
getStr = getStr + str[getNumb];
}
return getStr;
}
console.log(getRandStr(3));
4、写一个函数,生成一个随机 IP 地址,一个合法的 IP 地址为 0.0.0.0~255.255.255.255
function getRandIP(){
var getStr = ' ';
for(var i = 0;i <4;i++){
var getNumb = Math.floor(1 + Math.random()*255);
getStr = getStr + getNumb + '.';
}
getStr = getStr.substr(0,getStr.length-1);
return getStr;
}
console.log(getRandIP());
5、写一个函数,生成一个随机颜色字符串,合法的颜色为#000000~ #FFFFFF
function getRandColor(){
var str = '0123456789ABCDEF';
var color = ' ';
for(var i = 0;i < 6;i++){
var index = Math.floor(Math.random()*16);
color = color + str[index];
}
color = '#' + color;
return color;
}
var color = getRandColor(); console.log(color);
数组任务
1、数组方法里push、pop、shift、unshift、join、splice分别是什么作用?用splice 函数分别实现push、pop、shift、unshift方法
push方法用于在数组的末端添加一个或多个元素,并返回添加新元素后的数组长度。注意,该方法会改变原数组。
var a=[1,2,3,4,5];
a.push(1,2);//7
console.log(a);//[1, 2, 3, 4, 5, 1, 2]
pop方法用于删除数组的最后一个元素,并返回该元素。注意,该方法会改变原数组。
var a=[1,2,4,5,6];
a.pop();//6
console.log(a)//[1, 2, 4,5]
shift方法用于删除数组的第一个元素,并返回该元素。注意,该方法会改变原数组
var a=[1,2,4,5,6];
a.shift();//1
console.log(a);//[2,4,5,6]
concat方法用于多个数组的合并。它将新数组的成员,添加到原数组的尾部,然后返回一个新数组,原数组不变。
var a=[1,2,4,5,6];
a.concat(['jirengu','hangzhou']);//[2, 4, 5, 6, "jirengu", "hangzhou"]
console.log(a);//[1,2,4,5,6],原数组不变
join方法以参数作为分隔符,将所有数组成员组成一个字符串返回。如果不提供参数,默认用逗号分隔。
var a=[1,2,4,5,6];
a.join(' $');//"1 $2 $4 $5 $6"
console.log(a);//[1,2,4,5,6]
unshift方法用于在数组的第一个位置添加元素,并返回添加新元素后的数组长度。注意,该方法会改变原数组。
var a=[1,2,4,5,6];
a.unshift('mhy');//6
console.log(a);//["mhy", 1, 2, 4, 5, 6]
splice方法用于删除原数组的一部分成员,并可以在被删除的位置添加入新的数组成员,返回值是被删除的元素。注意,该方法会改变原数组。
var a=[1,2,4,5,6,4,8,34,235,2000];
a.splice(3,3,'mhy','jirengu');//[5, 6, 4],返回被删除的部分
console.log(a);//[1, 2, 4, "mhy", "jirengu", 8, 34, 235, 2000],新的数组中含有新增加的元素
用splice 函数分别实现push、pop、shift、unshift 、splice方法
var a=['jirengu','hangzhou','mhy'];
//solice替代push给数组末尾添加元素
a.splice(3,0,'qingqing','ruoyu');//给a的末尾添加新元素
console.log(a);//["jirengu", "hangzhou", "mhy", "qingqing", "ruoyu"]
//solice替代pop删除数组的最后一个元素
a.splice(4,1);//['ruoyu'],删除末尾的元素
console.log(a);//["jirengu", "hangzhou", "mhy", "qingqing"]
//solice替代shift方法用于删除数组的第一个元素
a.splice(0,1);//['jirengu'],删除第一个的元素
console.log(a);//["hangzhou", "mhy", "qingqing"]
//solice替代unshift方法用于在数组的第一个位置添加元素
a.splice(0,0,'qingqing');
console.log(a.length);//4,新添加元素之后数组的长度
console.log(a);//["qingqing", "hangzhou", "mhy", "qingqing"]
//下面用splice函数实现pop和push共用属性
var b=['good',2,3,4,5,666];
b.splice(1,4,"hello","world","beijng","pass");//[2, 3, 4, 5]
console.log(b);//["good", "hello", "world", "beijng", "pass", 666]
class MyArray extends Array {
fPush(...items) {
this.splice(this.length, 0, ...items);
}
fPop() {
this.splice(this.length - 1, 1);
}
fShift() {
this.splice(0, 1);
}
fUnshift(...items) {
this.splice(0, 0, ...items);
}
}
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 newArr = [];
for (var i =0; i<arr.length; i++) {
if (typeof arr[i] === 'number') {
if (arr[i] > 0) {
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(str) {
var nowTime = Date.now();
var endTime = Date.parse(str);
var gap = endTime - nowTime;
var days = parseInt(gap / (1000 * 60 * 60 * 24));
var hours = parseInt((gap % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = parseInt(((gap % (1000 * 60 * 60 * 24)) % (1000 * 60 * 60)) / (1000 * 60));
var seconds = parseInt(((gap % (1000 * 60 * 60 * 24)) % (1000 * 60 * 60)) % (1000 * 60) / 60);
return "距离除夕还有" + days + "天" + hours + "小时" + minutes + "分钟" + seconds + "秒";
}
var str = getChIntv("2017-02-08");
console.log(str); // 距离除夕还有-163天-14小时-20分钟-14秒
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' );//"6个月前"
var str2 = friendlyDate('1483941245793');//"6个月前"