欢迎来到博客园~~~
上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页
摘要: function betweenDates(d1, d2){ var res = Math.abs(d1.getTime() - d2.getTime()); return res/1000/60/60/24; } function betweenDates(d1, d2){ var res = M 阅读全文
posted @ 2019-05-05 14:24 孙~洋 阅读(338) 评论(0) 推荐(0) 编辑
摘要: function isLeapYear(year) { return year%400==0 || (year%4==0 && year%100!=0); } function isLeapYear(year) { return year%400==0 || (year%4==0 && year%1 阅读全文
posted @ 2019-05-05 14:23 孙~洋 阅读(265) 评论(0) 推荐(0) 编辑
摘要: function string2date(str){ if( hasLetter(str) ) { throw new Error("哥们儿,你写错了!!"); } return new Date(str); } function string2date(str){ if( hasLetter(st 阅读全文
posted @ 2019-05-05 14:23 孙~洋 阅读(260) 评论(0) 推荐(0) 编辑
摘要: function numberDoubled(n){ n = n+""; return n.length==1?"0"+n:n; } function date2string(d, sp){ sp = sp || "-"; var year = d.getFullYear(); var month 阅读全文
posted @ 2019-05-05 14:22 孙~洋 阅读(1013) 评论(0) 推荐(0) 编辑
摘要: function hasNumber(str) { for (var i in str) { var asc = str.charCodeAt(i); if (asc >= 48 && asc <= 57) { return true; } } return false; } function ha 阅读全文
posted @ 2019-05-05 14:18 孙~洋 阅读(795) 评论(0) 推荐(0) 编辑
摘要: function hasLetter(str) { for (var i in str) { var asc = str.charCodeAt(i); if ((asc >= 65 && asc <= 90 || asc >= 97 && asc <= 122)) { return true; } 阅读全文
posted @ 2019-05-05 14:16 孙~洋 阅读(7780) 评论(0) 推荐(0) 编辑
摘要: function hasSpecial(str) { for (var i in str) { var asc = str.charCodeAt(i); if (!(asc >= 48 && asc <= 57 || asc >= 65 && asc <= 90 || asc >= 97 && as 阅读全文
posted @ 2019-05-05 14:15 孙~洋 阅读(4104) 评论(0) 推荐(1) 编辑
摘要: Map集合,即映射 let map = new Map(); map.set("S230", "张三"); map.set("S231", "李四"); map.set("S232", "王五"); 获取某一个元素 map.get("s232"); //王五 循环遍历,配合解构赋值 for(let 阅读全文
posted @ 2019-04-30 09:04 孙~洋 阅读(82) 评论(0) 推荐(0) 编辑
摘要: Set集合,本质上就是对数组的一种包装 例如: let imgs = new Set(); imgs.add(1); imgs.add(1); imgs.add(5); imgs.add("5"); imgs.add(new String("abc")); imgs.add(new String(" 阅读全文
posted @ 2019-04-30 09:03 孙~洋 阅读(134) 评论(0) 推荐(0) 编辑
摘要: *静态对象:不需要创建,直接就是一个对象,方法(静态方法)直接通过这个对象名字调用, 实例方法必须通过实例对象调用 静态方法必须通过大写的对象调用 Math.PI π Math.E 常数的底数 Math.abs(值) 绝对值 Math.ceil(值) 向上取整 Math.floor(值) 向下取整 阅读全文
posted @ 2019-04-29 22:46 孙~洋 阅读(872) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页