.写一个函数,返回从min到max之间的 随机整数,包括min不包括max
<pre>
function randomness(min,max) { return min + Math.floor(Math.random()*(max-min)); }
</pre><pre>
function randomness(min,max) { return min + Math.ceil(Math.random()*(max-min)-1); }
</pre><pre>
function randomness(min,max,num) { //该函数可生成一组随机数 var dict = [], i, n = Math.round(num); for(i = 0; i < n; i++) { dict.push(min + Math.floor(Math.random()*(max-min))); } return dict; }
</pre>
.写一个函数,返回从min都max之间的 随机整数,包括min包括max
<pre>
function randomness(min,max) { return min + Math.floor(Math.random()*(max-min+1)); }
</pre><pre>
function randomness(min,max) { return min + Math.ceil(Math.random()*(max-min+1)-1); }
</pre><pre>
//该函数可生成一组随机数(包括min & max) function random(min,max,num) { var dict = [], i, n = Math.round(num); for(i = 0; i < n; i++) { dict.push(min + Math.floor(Math.random()*(max-min+1))); } return dict; }
</pre>
.写一个函数,生成一个长度为 n 的随机字符串,字符串字符的取值范围包括0到9,a到 z,A到Z。
<pre>
function generate(n) { var num = "0123456789abcdefghijklnmopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", n = Math.round(n), result = "", i; for (i = 0; i < n; i++) { result += num[Math.floor(Math.random()*num.length)]; } return result; }
</pre><pre>
function random(min,max) { return min + Math.floor(Math.random()*(max-min)) } function generate(n) { var num = "0123456789abcdefghijklnmopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ", n = Math.round(n), result = "", i; for (i = 0; i < n; i++) { result += num[random(0,num.length)]; } return result; } generate(100);
</pre>
.写一个函数,生成一个随机 IP 地址,一个合法的 IP 地址为 0.0.0.0~255.255.255.255
<pre>
function a() { var arr = [] for(var i=0; i<4; i++){ arr.push(Math.floor(Math.random()*256)) } return arr.join(".") } console.log(a())
</pre><pre>
function randomness(min,max) { return Math.floor(Math.random()*(max+1)) } function a() { var arr = [] for(var i=0; i<4; i++){ arr.push(randomness(0,255)) } return arr.join(".") } console.log(a())
</pre>
.写一个函数,生成一个随机颜色字符串,合法的颜色为#000000~ #ffffff
<pre>
function randomcolors() { var str = "0123456789abcdef", strl = str.length, result = "#", i; for (i=0; i<6; i++) { result += str[Math.floor(Math.random()*strl)] } return result }
</pre>
.数组方法里push、pop、shift、unshift、join、splice分别是什么作用?用 splice函数分别实现push、pop、shift、unshift方法
- 栈方法(后入先出 LIFO)
-
push
从数组后面加入新元素 -
pop
从数组后面拿出新元素
<pre>
var arr = [1,2,3] arr.push('a')//[1, 2, 3, "a"] arr.pop()//"a" arr//[1,2,3]
</pre> - 队列方法(先进先出FIFO)
-
shift
移除数组中的第一个项并返回该项,同时将数组长度减1。配合push
可以像使用队列一样使用数组。 -
unshift
跟shift
用途相反,能在数组前端添加任意个项并返回新数组的长度。可以跟pop
配合,反方向模拟队列。
<pre>
var a=new Array(1,2,3); a.unshift(4); console.log(a);//[4, 1, 2, 3] console.log(a.length);//4 console.log(a.shift());//4 console.log(a); //[1, 2, 3] console.log(a.length);//3
</pre> - 数组转换为字符串
join
把数组元素(对象调用其toString()方法)使用参数作为连接符连接成一字符串,不会修改原数组内容
<pre>
var a = new Array(1,2,3,4,5); console.log(a.join(',')); //1,2,3,4,5 console.log(a.join(' ')); //1 2 3 4 5
</pre> -
splice
用于一次性解决数组添加、删除(这两种方法一结合就可以达到替换效果),方法有三个参数: - 开始索引
- 删除元素的位移
- 插入的新元素
<pre>
var myFish = ['angel', 'clown', 'mandarin', 'sturgeon']; var removed = myFish.splice(2, 0, 'drum'); //插入新元素 myFish 为 ["angel", "clown", "drum", "mandarin", "sturgeon"] // removed 为 [], no elements removed
</pre><pre>
var myFish = ['angel', 'clown', 'drum', 'mandarin', 'sturgeon']; var removed = myFish.splice(3, 1); //取出 removed 为 ["mandarin"] //删除后 myFish 为 ["angel", "clown", "drum", "sturgeon"]
</pre><pre>
var myFish = ['angel', 'clown', 'trumpet', 'sturgeon']; var removed = myFish.splice(0, 2, 'parrot', 'anemone', 'blue'); //删除并添加新元素 myFish 为 ["parrot", "anemone", "blue", "trumpet", "sturgeon"] //取出存放 removed 为 ["angel", "clown"]
</pre><pre>
var myFish = ['parrot', 'anemone', 'blue', 'trumpet', 'sturgeon']; var removed = myFish.splice(myFish.length - 3, 2); //删除后 myFish 为 ["parrot", "anemone", "sturgeon"] //取出 removed 为 ["blue", "trumpet"]
</pre><pre>
var myFish = ['angel', 'clown', 'mandarin', 'sturgeon']; var removed = myFish.splice(2); //删除索引下标2以及后面元素 // myFish is ["angel", "clown"] // removed is ["mandarin", "sturgeon"]
</pre><pre>
//ImitationI: var arr = [1,2,3,4,5] //push arr.splice(arr.length,0,6); console.log(arr);//[1,2,3,4,5,6] //pop arr.splice(arr.length-1,1); console.log(arr)//[1,2,3,4,5] //shift arr.splice(0,1); console.log(arr);//[2,3,4,5] //unshift arr.splice(0,0,1); console.log(arr);//[1,2,3,4,5]
</pre>
.写一个函数,操作数组,数组中的每一项变为原来的平方,在原数组上操作
<pre>
function squareArr(arr){ } var arr = [2, 4, 6] squareArr(arr) console.log(arr) // [4, 16, 36]
</pre><pre>
function squareArr(arr){ var arrl = arr.length, result = [], i; for (i = 0; i < arrl; i++) { result.push(Math.pow(arr[i],2)) } return result } var arr = [2, 4, 6] console.log(squareArr(arr));
</pre>
.写一个函数,操作数组,返回一个新数组,新数组中只包含正数,原数组不变
<pre>
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]
</pre><pre>
function filterPositive(arr){ var arrl = arr.length, result = [], i; for (i = 0; i < arrl; i++) { if (arr[i]>0 && typeof arr[i] === "number"){ result.push(arr[i]) }else{ continue } } return result; } var arr = [3, -1, 2, '饥人谷', true] var newArr = filterPositive(arr) console.log(newArr) //[3, 2] console.log(arr) //[3, -1, 2, '饥人谷', true]
</pre>
sort排序(追加)
<pre>
//正排 var a = [1,-15,2,-6,4,8,10] a.sort(function(a,b){ return a-b; }); var b = [ {name:"c",sex:40}, {name:"h",sex:5}, {name:"o",sex:16}, {name:"a",sex:99} ] //按数正排序 b.sort(function(a,b){ return a.sex-b.sex //反序则b-a }); //按名排序 b.sort(function(a,b){ if(a.name > b.name){ return 1 }else{ return -1 } })
</pre>
.写一个函数getChIntv,获取从当前时间到指定日期的间隔时间
<pre>
var str = getChIntv("2017-02-08"); console.log(str); // 距除夕还有 20 天 15 小时 20 分 10 秒
</pre><pre>
//整的继续分解,散的利用 function getChIntv(dateStr) { var targetDate = new Date(dateStr) //目标时间 var curDate = new Date() //当前时间 var offset = Math.abs(targetDate - curDate); //防负值 var totalSeconds = Math.floor(offset/1000) //全部秒数 var second = 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 + '分钟' + second + '秒' } getChIntv('2017-02-08')
</pre>
.把hh-mm-dd格式数字日期改成中文日期
<pre>
var str = getChsDate('2015-01-08'); console.log(str); // 二零一五年一月八日
</pre><pre>
function datetf(dateStr){ var dict = ["零", "一", "二", "三", "四", "五", "六", "七", "八", "九", "十", "十一", "十二", "十三", "十四", "十五", "十六", "十七", "十八", "十九", "二十", "二十一", "二十二", "二十三", "二十四", "二十五", "二十六", "二十七", "二十八", "二十九", "三十", "三十一"] var subdivide = dateStr.split("-"), subyears = subdivide[0], submonths = subdivide[1], subdays = subdivide[2], years = dict[subyears[0]] + dict[subyears[1]] + dict[subyears[2]] + dict[subyears[3]], months = dict[parseInt(submonths)], days = dict[parseInt(subdays)], resultDate = years + '年 ' + months + '月 ' + days + '日 '; return resultDate } datetf("2017-6-16")
</pre>
.写一个函数,参数为时间对象毫秒数的字符串格式,返回值为字符串。假设参数为时间对象毫秒数t,根据t的时间分别返回如下字符串:
- 刚刚( t 距当前时间不到1分钟时间间隔)
- 3分钟前 (t距当前时间大于等于1分钟,小于1小时)
- 8小时前 (t 距离当前时间大于等于1小时,小于24小时)
- 3天前 (t 距离当前时间大于等于24小时,小于30天)
- 2个月前 (t 距离当前时间大于等于30天小于12个月)
- 8年前 (t 距离当前时间大于等于12个月)
<pre>
function replyTime(timeStr) { var nowTime = Date.now()//现在时间 offset = (nowTime - timeStr)/1000/60 //相差分钟时间 if (offset < 1) { return parseInt(offset)*60 + "刚刚"//转换为秒并附上描述 }else if(offset >= 1 && offset < 60) { return parseInt(offset) + "分钟前" }else if(offset >= 60 & offset < 24*60) { return parseInt(offset/60) + "小时前" }else if(offset >= 24*60 && offset < 60*24*30) { return parseInt(offset/60/24) + "天前" }else if(offset >= 60*24*30 && offset < 60*24*30*12) { return parseInt(offset/60/24/30) + "个月前" }else { return parseInt(offset/60/24/30/12) + "年前" } } replyTime('961200000000')//17年前
</pre>
- Added..
- 判断闰年
<pre>
function xxx(year) { var d = new Date(year,1,29) console.log(d.getDate()) return d.getDate === 29 }
</pre>