上一页 1 2 3 4 5 6 ··· 33 下一页

2021年2月17日

摘要: 1.set集合中,+0和-0和0,都认为是同一个元素 // set里面的+0 和 -0 let s = new Set() s.add(+0) s.add(-0) s.add(0) console.log(s.size );// 1 2.set集合中,NaN会被去重 let s2 = new Set 阅读全文

posted @ 2021-02-17 08:00 猫头唔食鱼 阅读(456) 评论(0) 推荐(0) 编辑

摘要: // +0 和 -0 比较 console.log(+0 -0); // true console.log(Object.is(+0,-0)); // false // NaN 比较 console.log(NaN NaN ); // false console.log(Object.is(NaN, 阅读全文

posted @ 2021-02-17 05:42 猫头唔食鱼 阅读(41) 评论(0) 推荐(0) 编辑

摘要: 1.纯数字数组 // 纯数字数组排序 let arr = [3, 4, 5, 1, 2] // 从小到大 console.log(arr.sort()); // 也是从小到大 console.log(arr.sort((a, b) => a - b)); // 从大到小 console.log(ar 阅读全文

posted @ 2021-02-17 05:27 猫头唔食鱼 阅读(37) 评论(0) 推荐(0) 编辑

2021年2月15日

摘要: js函数可以给参数传入默认值,如果传入的实参不是undefined,则取实参的值,如果不传实参或者传入的实参是undefined,那么就会取默认值 function test(name,age,addr='广州') { return obj={name,age,addr} } console.log 阅读全文

posted @ 2021-02-15 06:32 猫头唔食鱼 阅读(52) 评论(0) 推荐(0) 编辑

摘要: git的add和提交 git add 文件夹名 这个命令会把整个文件夹,包括里面的所有文件,暂存 git add 文件名 暂存单个文件 查看提交状态 git status -s A 已经git add的文件 M 被修改过的文件 ?? 新建的还没执行git add的文件 忽略文件 新建.gitigno 阅读全文

posted @ 2021-02-15 00:09 猫头唔食鱼 阅读(58) 评论(0) 推荐(0) 编辑

2021年2月3日

摘要: let a = 10000000 let b = 1e7 // 7个0就是7 这是数字1,不是字母l console.log(a==b) // true 阅读全文

posted @ 2021-02-03 17:39 猫头唔食鱼 阅读(323) 评论(0) 推荐(0) 编辑

摘要: // 禁止右键 window.oncontextmenu = function () { return false } // 禁止f12 document.onkeydown=function (e){ var currKey=0,evt=e||window.event; currKey=evt.k 阅读全文

posted @ 2021-02-03 17:04 猫头唔食鱼 阅读(108) 评论(0) 推荐(0) 编辑

摘要: let require = ()=>{throw new Error('函数必须传参')} let print = (num=require())=>{console.log(num)} print(2) // 2 print(null) // null print() // 报错 阅读全文

posted @ 2021-02-03 17:03 猫头唔食鱼 阅读(82) 评论(0) 推荐(0) 编辑

摘要: { // 通过length获取前面几项 let arr = [1,2,3,4] arr.length = 2 console.log(arr); // [1,2] } { // 通过splice获取前面几项 let arr = [1,2,3,4] console.log(arr.splice(0,2 阅读全文

posted @ 2021-02-03 15:22 猫头唔食鱼 阅读(1999) 评论(0) 推荐(0) 编辑

摘要: // 格式化输出的JSON字符串 console.log(JSON.stringify({ alpha: 'A', beta: 'B' }, null, '\t')); 控制台打印的: 阅读全文

posted @ 2021-02-03 15:15 猫头唔食鱼 阅读(136) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 33 下一页