Math任务
- 写一个函数,返回从min到max之间的 随机整数,包括min不包括max
function getRandInt(min,max){
return Math.floor(Math.random()*(max-min))+min
}
getRandInt(1,10)
- 写一个函数,返回从min都max之间的 随机整数,包括min包括max
function getRandInt2(min,max){
return Math.floor(Math.random()*(max-min)+1)+min
}
getRandInt2(1,10)
- 写一个函数,生成一个长度为 n 的随机字符串,字符串字符的取值范围包括0到9,a到 z,A到Z。
function getRandStr(len){
var str='0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
var newStr=''
for(i=0;i<len;i++){
newStr+=str[Math.floor(Math.random()*str.length)]
}
return newStr
}
getRandStr(10)
- 写一个函数,生成一个随机 IP 地址,一个合法的 IP 地址为 0.0.0.0~255.255.255.255
function getRandIP(){
var arr=[]
for(var i=0;i<4;i++){
// arr[i]=Math.floor(Math.random()*256)
arr.push(Math.floor(Math.random()*256))
}
return arr.join(".")
}
- 写一个函数,生成一个随机颜色字符串,合法的颜色为#000000~ #ffffff
function getRandColor(){
var str='abcdef0123456789'
var newStr=''
for(var i=0;i<6;i++){
newStr+=str[Math.floor(Math.random()*str.length)]
}
return '#'+newStr
}
数组任务
1. 数组方法里push、pop、shift、unshift、join、splice分别是什么作用?用 splice函数分别实现push、pop、shift、unshift方法
- push方法用于在数组的末端添加一个或多个元素,并返回添加新元素后的数组长度。注意,该方法会改变原数组
var arr = []
arr.push(1,2)
arr.push("a")
arr.push({})
arr //[1,2,"a",{}]
- pop方法用于删除数组的最后一个元素,并返回该元素。注意,该方法会改变原数组。
var arr = [3,4,5]
arr.pop()
arr //[3,4]
- shift方法用于删除数组的第一个元素,并返回该元素。注意,该方法会改变原数组。
var arr = [3,4,5]
arr.shift()
arr //[4,5]
- unshift方法用于在数组的第一个位置添加元素,并返回添加新元素后的数组长度。注意,该方法会改变原数组。
var arr = []
arr.unshift({})
arr.unshift(1)
arr //[1,{}]
- join方法以参数作为分隔符,将所有数组成员组成一个字符串返回。如果不提供参数,默认用逗号分隔
var a = [1, 2, 3, 4];
a.join(' ') // '1 2 3 4'
a.join(' | ') // "1 | 2 | 3 | 4"
a.join() // "1,2,3,4"
- splice方法用于删除原数组的一部分成员,并可以在被删除的位置添加入新的数组成员,返回值是被删除的元素。注意,该方法会改变原数组。
var arr = [3,7,24,7]
arr.splice(arr.length,0,1,2) //相当于arr.push(1,2)
arr.splice(arr.length-1,1,) //相当于arr.pop()
arr.splice(0,0,12) //相当于arr.unshift(12)
arr.splice(0,1) //相当于arr.shift()
2. 写一个函数,操作数组,数组中的每一项变为原来的平方,在原数组上操作
function squareArr(arr){
arr.forEach(function(e,i,array){
array[i]=e*e
})
return arr
}
var arr = [2,4,5]
squareArr(arr)
3. 写一个函数,操作数组,返回一个新数组,新数组中只包含正数,原数组不变
function filterPositive(arr){
var newArr = arr.filter(function(e){
return e>0 && typeof e =='number'
})
return newArr
}
var arr = [3, -1, 2, '饥人谷', true]
var newArr = filterPositive(arr)
console.log(newArr)
console.log(arr)
Date任务
- 写一个函数getChIntv,获取从当前时间到指定日期的间隔时间
function getChIntv(appointedDay){
var target = new Date(appointedDay)
var now = new Date()
var totalmillisecond = Math.abs(target-now)
var totalSeconds = Math.floor(totalmillisecond/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 day = Math.floor(totalHours/24)
return '距离'+appointedDay+'还有'+day+'天'+hours+'小时'+minutes+'分'+seconds+'秒'
}
getChIntv("2017-11-18")
- 把hh-mm-dd格式数字日期改成中文日期
function getChsDate(str){
var dict = ['零','一','二','三','四','五','六','七','八','九','十']
var arr = str.split('-')
arr[0]=dict[arr[0][0]]+dict[arr[0][1]]+dict[arr[0][2]]+dict[arr[0][3]]
if(arr[1][0]==='0'){
arr[1]=dict[arr[1][1]]
}
else{
if(arr[1][1]==='0'){
arr[1]=dict[10]
}
else{
arr[1]=dict[10]+dict[arr[1][1]]
}
}
if(arr[2][0]==='0'){
arr[2]=dict[arr[2][1]]
}
else if(arr[2][0]==='1'){
if(arr[2][1]==='0'){
arr[2][0]=dict[10]
}
else{
arr[2]=dict[10]+dict[arr[2][1]]
}
}
else{
if(arr[2][1]==='0'){
arr[2]=dict[arr[2][0]]+dict[10]
}
else{
arr[2]=dict[arr[2][0]]+dict[10]+dict[arr[2][1]]
}
}
return arr[0]+'年'+arr[1]+'月'+arr[2]+'日'
}
getChsDate("2015-11-21")
- 写一个函数,参数为时间对象毫秒数的字符串格式,返回值为字符串。假设参数为时间对象毫秒数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=Math.floor((now-time)/1000)
if(offset<60){
return '刚刚'
}
else if(offset>=3*60&&offset<60*60){
return '3分钟前'
}
else if(offset>=60*60&&offset<24*60*60){
return '8小时前'
}
else if(offset>=24*60*60&&offset<30*24*60*60){
return '3天前'
}
else if(offset>=30*24*60*60&&offset<12*30*24*60*60){
return '2个月前'
}
else{
return '8年前'
}
}