Math、数组、Date

1 写一个函数,返回从min到max之间的 随机整数,包括min不包括max

function getRandom (min,max) {
  return Math.floor(Math.random()*(max-min) + min)
}
//Math.floor 返回小于参数值的最大整数
//Math.random 返回[0,1)之间的随机数```
##2 写一个函数,返回从min都max之间的 随机整数,包括min包括max

function getRandom (min,max) {
return Math.floor(Math.random()*(max-min+1) + min)
}```

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

function getRandomStr (n) {
  var dict = '0123456789'+
             'abcdefghijklnmopqrstuvwxyz'+
             'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; //一个字典;
  var string = '';
  for (i=0; i

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

function getRandIP(){
  var ipArr = [];
  for (i=0; i<4; i++) {
      ipArr.push(Math.floor(Math.random()*256)); //push()方法把元素从尾部放进数组;
  }
  return ipArr.join('.');
}
var ip = getRandIP()
console.log(ip)```
##5 写一个函数,生成一个随机颜色字符串,合法的颜色为#000000~ #ffffff

function getColor () {
var dict = '0123456789abcdef'
var color = '#';
for (i=0; i<6; i++) {
color += dict[Math.floor(Math.random()*16)];
}
return color;
}
getColor() ;

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

push()方法可以把一个元素从尾部插入数组,改变原数组长度和索引;

var a =[] ;
a.push(4);
a ; // [4]```
pop()方法可以删除并返回数组的最后一个元素,改变原数组长度和索引;

var a =[1,2] ;
a.pop(); // 2
a ; // [1]```
shift()方法可以把数组的第一个元素从其中删除,并返回第一个元素的值,改变原数组长度和索引;

var a=[1,2,3,4];
a.shift(); //1;
a; //[2,3,4]```

unshift()方法可向数组的开头添加一个或更多元素,并返回新的长度,改变原数组长度和索引;

var a=[1,2,3,4,5];
a.unshift(7,8); //7
a; //[7,8,1,2,3,4,5]```
splice()方法可以向/从数组中添加/删除项目,然后返回被删除的项目,没有删除则返回空数组,改变原数组长度和索引;

var a=[1,2,3];
a.splice(0,1); //[1]; //从第0位开始,删除1位;
a; //[2,3]```

var a=[1,2,3];
a.splice(0,0,7,8); //[];从第0位开始,删除0位,插入7,8(从前插入);
a; //[7,8,1,2,3];```

var a=[1,2,3,4];
a.splice(1,1,7,8); //[2];从第1位开始,删除1位([2]),并插入7,8;
a; //[1,7,8,3,4];```
用splice()可以实现push()、pop()、shift()、unshift()这些方法;

var a =[1,2,3,4,5,6];
a.splice(a.length,0,n) // 实现push(),n为想要传入的元素;
a.splice(a.length-1,1)// 实现pop();
a.splice(0,1) // 实现shift();
a.splice(0,0,n) // 实现unshift(),n为想要传入的元素;```

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

function squareArr(arr){
for (i=0; i arr[i] = arr[i]*arr[i];
}
return arr;
}
var arr = [2, 4, 6]
squareArr(arr)
console.log(arr) // [4,16,36]```

8 写一个函数,操作数组,返回一个新数组,新数组中只包含正数,原数组不变

function filterPositive(arr){
  var newArr = [];
  var k = 0;
  for (i=0; i0) {
              newArr[k] = arr[i];
              k++;
          }
      }
  }
  return newArr;
}
var arr = [3, -1,  2,  '饥人谷', true]
var newArr = filterPositive(arr)
console.log(newArr) //[3, 2]
console.log(arr) //[3, -1,  2,  '饥人谷', true]```
##9 写一个函数getChIntv,获取从当前时间到指定日期的间隔时间

//示例
var str = getChIntv("2017-02-08");
console.log(str); // 距除夕还有 20 天 15 小时 20 分 10 秒```

function getChIntv(date) {
   var time = Math.abs(Date.now()-Date.parse(date));
   var day = Math.floor(time/86400000);
   var hour = Math.floor(time%86400000/3600000);
   var min = Math.floor(time%86400000%3600000/60000)
   var s = Math.floor(time%86400000%3600000%60000/1000)
   var ms = (time%86400000%3600000%60000%1000);
   return '距离'+date+': '+day+' 天 '+hour+' 小时 '+min+' 分钟 '+s+' 秒 '+ms+' 毫秒 '
}
getChIntv('2017-04-08')  //距离2017-04-08: 55 天 4 小时 0 分钟 45 秒 774 毫秒;

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

//示例
var str = getChsDate('2015-01-08');
console.log(str);  // 二零一五年一月八日```

var dict ={0:'零',1:'一',2:'二',3:'三',4:'四',5:'五',6:'六',7:'七',8:'八',9:'九',
10:'十',11:'十一',12:'十二',13:'十三',14:'十四',15:'十五',16:'十六',
17:'十七',18:'十八',19:'十九',20:'二十',21:'二十一',22:'二十二',23:'二十三',
24:'二十四',25:'二十五',26:'二十六',27:'二十七',28:'二十八',29:'二十九',30:'三十',31:'三十一'}

function getCHT (date) {
time = date.split('-');
year = time[0].split('');
for (i=0; i year[i] = dict[year[i]];
}
month = dict[parseInt(time[1])];
day = dict[parseInt(time[2])];
return year.join('')+' 年 '+month+' 月 '+day+' 日'
}
getCHT('2017-06-01') // 二零一七年六月一日;

##11 写一个函数,参数为时间对象毫秒数的字符串格式,返回值为字符串。假设参数为时间对象毫秒数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 nowT = Date.now();  //Date.now()获取当前时间距离1970年1月1日00:00:00的毫秒数
   pastT = nowT-time;
   if (pastT<=60*1000) {
       return '刚刚'
   }if (pastT>60000 && pastT<3600*1000) {
       return Math.floor(pastT/60000)+'分钟前'
   }if (pastT>=3600*1000 && pastT<24*3600*1000) {
       return Math.floor(pastT/(3600*1000))+'小时前'
   }if (pastT>=24*3600*1000 && pastT<30*24*3600*1000) {
       return Math.floor(pastT/(24*3600*1000))+'天前'
   }if (pastT>=30*24*3600*1000 && pastT<12*30*24*3600*1000) {
       return Math.floor(pastT/(30*24*3600*1000))+'月前'
   }else {
       return Math.floor(pastT/(360*24*3600*1000))+'年前'
   }
}
friendlyDate(1496246400000) //一天前;```

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