上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 28 下一页
  2022年1月22日
摘要: let obi=[ { price:123 } , { price:23 } , { price:45 } ]; let res=obi.reduce((obj,cur,index)=>{ obj[`${cur["price"]}-${index+1}`]=obi; // console.log(o 阅读全文
posted @ 2022-01-22 15:30 weakup 阅读(44) 评论(0) 推荐(0) 编辑
  2022年1月21日
摘要: let web={name:"houdunern",url:"xxx.com"} let {name,url}=web; console.log(name,url); let web={name:"houdunern",url:"xxx.com"} let {name,url}=web; conso 阅读全文
posted @ 2022-01-21 20:35 weakup 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 首先声明定义类并声明Promise状态与值,有以下几个细节需要注意。 executor为执行者 当执行者出现异常时触发拒绝状态 使用静态属性保存状态值 状态只能改变一次,所以在resolve与reject添加条件判断 因为 resolve或rejected方法在executor中调用,作用域也是ex 阅读全文
posted @ 2022-01-21 11:31 weakup 阅读(25) 评论(0) 推荐(0) 编辑
  2022年1月20日
摘要: // 闭包会引起内存泄漏// 只想要获取到desc的内容,可以将item设置位null let divs=document.querySelectorAll("div"); divs.forEach(function(item){ let desc=item.getAttribute("desc") 阅读全文
posted @ 2022-01-20 23:43 weakup 阅读(139) 评论(0) 推荐(0) 编辑
摘要: let arr=[1,23,4,5,6,7,21,0]; function between(a,b){ return function(v){ return v>=a && v<=b; } } console.log(arr.filter(between(0,9))); <button>后盾人</b 阅读全文
posted @ 2022-01-20 23:04 weakup 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 截取字符串 使用 slice、substr、substring 函数都可以截取字符串。 slice、substring 第二个参数为截取的结束位置 substr 第二个参数指定获取字符数量 let hd = 'houdunren.com'; console.log(hd.slice(3)); //d 阅读全文
posted @ 2022-01-20 19:20 weakup 阅读(543) 评论(0) 推荐(0) 编辑
摘要: typeof typeof 用于返回以下原始类型 基本类型:number/string/boolean function object undefined 可以使用typeof用于判断数据的类型 let a = 1; console.log(typeof a); //number let b = " 阅读全文
posted @ 2022-01-20 19:08 weakup 阅读(37) 评论(0) 推荐(0) 编辑
摘要: for/in 用于遍历对象的所有属性,for/in主要用于遍历对象,不建议用来遍历数组。 遍历数组操作 let hd = [ { title: "第一章 走进JAVASCRIPT黑洞", lesson: 3 }, { title: "ubuntu19.10 配置好用的编程工作站", lesson: 阅读全文
posted @ 2022-01-20 19:01 weakup 阅读(61) 评论(0) 推荐(0) 编辑
  2022年1月19日
摘要: function Color(elem){ this.elem=elem; this.color=["blue","#9b59b6","#f39c12","#1abc9c"]; this.run=function(){ setInterval( function(){ console.log(thi 阅读全文
posted @ 2022-01-19 23:16 weakup 阅读(14) 评论(0) 推荐(0) 编辑
摘要: function show(){ console.log(this.name); } show.bind({name:"houdunren"})();//加了(),因为不是立即执行函数 function show(){ // this.name=name; console.log(this.name 阅读全文
posted @ 2022-01-19 22:39 weakup 阅读(41) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 28 下一页