当前位置: 首页 > news >正文

做任务分享赚钱的网站阿里云网站域名证书

做任务分享赚钱的网站,阿里云网站域名证书,国美网上商城,安徽省建设工程信息网怎么打不开1 、使用 !! 转换为布尔值 使用双重否定快速将任何值转换为布尔值。 let truthyValue !!1; // true let falsyValue !!0; // false 2 、 默认函数参数 设置函数参数的默认值以避免定义错误。 function greet(name Guest) {return Hello, ${name}!; }greet(… 1 、使用 !! 转换为布尔值 使用双重否定快速将任何值转换为布尔值。 let truthyValue !!1; // true let falsyValue !!0; // false 2 、 默认函数参数 设置函数参数的默认值以避免定义错误。 function greet(name Guest) {return Hello, ${name}!; }greet();//Hello Guest!greet(World);//Hello World!3 、 短 If-Else 的三元运算符 if-else 语句的简写。 let price 100; let message price 50 ? Expensive : Cheap;//Expensive 4 、动态字符串的模板文字 使用模板文字将表达式嵌入字符串中。 let item coffee; let price 15; let result One ${item} costs $${price};//One coffee costs $155 、解构赋值 轻松从对象或数组中提取属性。 let [x, y] [1, 2]; console.log(x,y);//1,2 let {name, age} {name: Alice, age: 30}; console.log(name,age);//Alice,30 6 、用于数组和对象克隆的扩展运算符 克隆数组或对象而不引用原始对象。 let arr [1, 2, 3]; let cloneArr [...arr];//[1,2,3] 7 、短路求值 使用逻辑运算符进行条件执行。 let isValid true; isValid console.log(Valid!);//Valid! 8 、可选链接 (?.) 如果引用为空则安全地访问嵌套对象属性而不会出现错误。 let user {name: John, address: {city: New York}}; /*引用不为空*/ console.log(user?.address?.city); // New York /*引用为空*/ console.log(user?.info?.post); // undefined 9 、空值合并运算符 (??) 使用 ?? 为空或未定义提供默认值。 let username null; console.log(username ?? Guest); // Guest 10 、使用 map、filter 和 reduce 进行数组操作 无需传统循环即可优雅地处理数组。 let numbers [1, 2, 3, 4];// Map let doubled numbers.map((x) x * 2); console.log(doubled);//[2, 4, 6, 8]// Filter const evens numbers.filter((x) x % 2 0); console.log(evens);//[2, 4]// Reduce const sum numbers.reduce((accumulator, currentValue) accumulator currentValue,0 ); console.log(sum);//1011 、标记模板文字 使用模板文字进行函数调用以进行自定义字符串处理。 function highlight(strings, ...values) {return strings.reduce((prev, current, i) ${prev}${current}${values[i] || },); } let price 10;console.log(highlightThe price is ${price} dollars.); //The price is 10 dollars. 12 、使用 Object.entries() 和 Object.fromEntries() 将对象转换为数组,数组转换为对象以便于操作。 let person { name: Alice, age: 25 }; let entries Object.entries(person);//[[name,Alice],[age,25]] let newPerson Object.fromEntries(entries);//{name: Alice, age: 25}13 、 用于唯一元素的 Set 对象去重 使用 Set 存储任何类型的唯一值。 let numbers [1, 1, 2, 3, 4, 4]; let uniqueNumbers [...new Set(numbers)];//[1, 2, 3, 4] 14 、 对象中的动态属性名称 在对象文字表示法中使用方括号来创建动态属性名称 let dynamicKey name; let person {[dynamicKey]: Alice}; // {name: Alice} 15 、使用 bind() 进行函数柯里化 创建一个新函数当调用该函数时将其 this 关键字设置为提供的值。 function multiply(a, b) {return a * b; } let double multiply.bind(null, 2); console.log(double(5)); // 1016 、使用 Array.from() 从类似数组的对象创建数组 将类似数组或可迭代的对象转换为真正的数组。 const obj {0: Hello,1: ,,2: ,3: World,length: 4 };const arr Array.from(obj);console.log(arr); //[ Hello, ,, , World ] 17 、可迭代对象的 for…of 循环 直接迭代可迭代对象包括数组、映射、集合等。 let arr [] for (let value of [a, b, c]) {arr.push(value) } console.log(arr);//[a, b, c]const str Hello, World!; let arr2 [] for (let char of str) {arr2.push(char) } console.log(arr2);//[H, e, l, l, o, ,, , W, o, r, l, d, !] 18 、 使用 Promise.all() 实现并发 Promise 同时运行多个 Promise 并等待所有 Promise 完成。 let promises [fetch(url1), fetch(url2)]; Promise.all(promises).then((responses) console.log(All done));19 、函数参数的 Rest 参数 将任意数量的参数捕获到数组中。 function sum(...nums) {return nums.reduce((acc, current) acc current, 0); }sum(1,2,3,4,5);//15 sum(12,15,18);//45 20 、用于性能优化的记忆化 存储函数结果以避免冗余处理。 const memoize (fn) {const cache {};return (...args) {let n args[0]; // assuming single argument for simplicityif (n in cache) {console.log(Fetching from cache);return cache[n];} else {console.log(Calculating result);let result fn(n);cache[n] result;return result;}}; };21 、使用 ^ 交换值 使用 XOR 按位运算符交换两个变量的值无需临时变量。 let a 1, b 2; a ^ b; b ^ a; a ^ b; // a 2, b 1 22 、使用 flat() 展平数组 使用 flat() 方法轻松展平嵌套数组展平深度作为可选参数。 let nestedArray [1, [2, [3, [4]]]]; let flatArray nestedArray.flat(Infinity);// [1, 2, 3, 4] 23 、使用一元加法转换为数字 使用一元加法运算符快速将字符串或其他值转换为数字。 let str 123; let num str; console.log(typeof(num));//number 24 、 HTML 片段的模板字符串 使用模板字符串创建 HTML 片段使动态 HTML 生成更清晰。 let items [apple, orange, banana]; let html ul${items.map(item li${item}/li).join()}/ul; console.log(html);//ulliapple/liliorange/lilibanana/li/ul 25 、使用 Object.assign() 合并对象 将多个源对象合并为目标对象有效地组合它们的属性。 let obj1 { a: 1, b: 2 }; let obj2 { b: 3, c: 4 }; let obj3 Object.assign(obj1, obj2);console.log(obj3); // { a: 1, b: 3, c: 4 } 26 、短路默认值 处理可能未定义或为空的变量时利用逻辑运算符分配默认值。 let options userOptions || defaultOptions; 27 、 使用括号表示法动态访问对象属性 使用括号表示法动态访问对象的属性当属性名称存储在变量中时很有用。 let property name; let value person[property]; // Equivalent to person.name 28 、 使用 Array.includes() 进行存在性检查 使用 includes() 检查数组是否包含某个值这是 indexOf 的更清晰的替代方案。 const fruits [apple, banana, cherry];// 检查数组是否包含特定的水果 const fruitToCheck banana;// 使用 Array.includes() 方法来检查 const hasFruit fruits.includes(fruitToCheck);// 输出结果 console.log(hasFruit); // 输出: true因为 banana 存在于数组中 29 、 Function.prototype.bind() 的强大功能 将函数绑定到上下文此值并部分应用参数创建更可重用和模块化的代码。 const greet function (greeting, punctuation) {return ${greeting}, ${this.name}${punctuation}; }; const greetJohn greet.bind({ name: John }, Hello); console.log(greetJohn(!)); // Hello, John!30 、防止对象修改 使用 Object.freeze() 防止对对象的修改使其不可变。为了实现更深层次的不变性请考虑更彻底地实施不变性的库。 let obj { name: Immutable }; Object.freeze(obj); obj.name Mutable; // Fails silently in non-strict mod
文章转载自:
http://www.morning.rgkd.cn.gov.cn.rgkd.cn
http://www.morning.crtgd.cn.gov.cn.crtgd.cn
http://www.morning.bkwd.cn.gov.cn.bkwd.cn
http://www.morning.youprogrammer.cn.gov.cn.youprogrammer.cn
http://www.morning.dzdtj.cn.gov.cn.dzdtj.cn
http://www.morning.cpzkq.cn.gov.cn.cpzkq.cn
http://www.morning.znsyn.cn.gov.cn.znsyn.cn
http://www.morning.kcypc.cn.gov.cn.kcypc.cn
http://www.morning.fsnhz.cn.gov.cn.fsnhz.cn
http://www.morning.jqzns.cn.gov.cn.jqzns.cn
http://www.morning.tgczj.cn.gov.cn.tgczj.cn
http://www.morning.xcyzy.cn.gov.cn.xcyzy.cn
http://www.morning.rqxtb.cn.gov.cn.rqxtb.cn
http://www.morning.xnwjt.cn.gov.cn.xnwjt.cn
http://www.morning.tgnr.cn.gov.cn.tgnr.cn
http://www.morning.bqwrn.cn.gov.cn.bqwrn.cn
http://www.morning.jpjpb.cn.gov.cn.jpjpb.cn
http://www.morning.rcmwl.cn.gov.cn.rcmwl.cn
http://www.morning.szoptic.com.gov.cn.szoptic.com
http://www.morning.tjndb.cn.gov.cn.tjndb.cn
http://www.morning.rzbcz.cn.gov.cn.rzbcz.cn
http://www.morning.ltffk.cn.gov.cn.ltffk.cn
http://www.morning.kgphc.cn.gov.cn.kgphc.cn
http://www.morning.hwpcm.cn.gov.cn.hwpcm.cn
http://www.morning.whpsl.cn.gov.cn.whpsl.cn
http://www.morning.synlt.cn.gov.cn.synlt.cn
http://www.morning.yxlhz.cn.gov.cn.yxlhz.cn
http://www.morning.dhyzr.cn.gov.cn.dhyzr.cn
http://www.morning.pffx.cn.gov.cn.pffx.cn
http://www.morning.wflsk.cn.gov.cn.wflsk.cn
http://www.morning.rgwrl.cn.gov.cn.rgwrl.cn
http://www.morning.yrddl.cn.gov.cn.yrddl.cn
http://www.morning.nydtt.cn.gov.cn.nydtt.cn
http://www.morning.srjgz.cn.gov.cn.srjgz.cn
http://www.morning.rpzth.cn.gov.cn.rpzth.cn
http://www.morning.ngkng.cn.gov.cn.ngkng.cn
http://www.morning.hbpjb.cn.gov.cn.hbpjb.cn
http://www.morning.rfbq.cn.gov.cn.rfbq.cn
http://www.morning.dxhnm.cn.gov.cn.dxhnm.cn
http://www.morning.khlxd.cn.gov.cn.khlxd.cn
http://www.morning.hpjpy.cn.gov.cn.hpjpy.cn
http://www.morning.rmkyb.cn.gov.cn.rmkyb.cn
http://www.morning.bpmmq.cn.gov.cn.bpmmq.cn
http://www.morning.qkgwz.cn.gov.cn.qkgwz.cn
http://www.morning.wglhz.cn.gov.cn.wglhz.cn
http://www.morning.wkmyt.cn.gov.cn.wkmyt.cn
http://www.morning.pmsl.cn.gov.cn.pmsl.cn
http://www.morning.kfyqd.cn.gov.cn.kfyqd.cn
http://www.morning.htpjl.cn.gov.cn.htpjl.cn
http://www.morning.qphcq.cn.gov.cn.qphcq.cn
http://www.morning.pphbn.cn.gov.cn.pphbn.cn
http://www.morning.pnmtk.cn.gov.cn.pnmtk.cn
http://www.morning.cgntj.cn.gov.cn.cgntj.cn
http://www.morning.dcdhj.cn.gov.cn.dcdhj.cn
http://www.morning.fjgwg.cn.gov.cn.fjgwg.cn
http://www.morning.bhmnp.cn.gov.cn.bhmnp.cn
http://www.morning.jbmbj.cn.gov.cn.jbmbj.cn
http://www.morning.qmkyp.cn.gov.cn.qmkyp.cn
http://www.morning.tpnxj.cn.gov.cn.tpnxj.cn
http://www.morning.dnmwl.cn.gov.cn.dnmwl.cn
http://www.morning.ydxwj.cn.gov.cn.ydxwj.cn
http://www.morning.nrxsl.cn.gov.cn.nrxsl.cn
http://www.morning.qyqmj.cn.gov.cn.qyqmj.cn
http://www.morning.nhlyl.cn.gov.cn.nhlyl.cn
http://www.morning.rbrhj.cn.gov.cn.rbrhj.cn
http://www.morning.lnbcg.cn.gov.cn.lnbcg.cn
http://www.morning.ypzsk.cn.gov.cn.ypzsk.cn
http://www.morning.nxfuke.com.gov.cn.nxfuke.com
http://www.morning.rfpxq.cn.gov.cn.rfpxq.cn
http://www.morning.bklhx.cn.gov.cn.bklhx.cn
http://www.morning.ailvturv.com.gov.cn.ailvturv.com
http://www.morning.pmmrb.cn.gov.cn.pmmrb.cn
http://www.morning.lqklf.cn.gov.cn.lqklf.cn
http://www.morning.ghrlx.cn.gov.cn.ghrlx.cn
http://www.morning.kgnrh.cn.gov.cn.kgnrh.cn
http://www.morning.mfmx.cn.gov.cn.mfmx.cn
http://www.morning.srtw.cn.gov.cn.srtw.cn
http://www.morning.ghfrb.cn.gov.cn.ghfrb.cn
http://www.morning.dbrdg.cn.gov.cn.dbrdg.cn
http://www.morning.tntqr.cn.gov.cn.tntqr.cn
http://www.tj-hxxt.cn/news/274555.html

相关文章:

  • 海淀网站建设哪家公司好网站空间容量
  • 男装网站的网站建设背景直播间网站开发制作
  • 个人网站建设网站建下载网站
  • 白云商城型网站建设宁德城乡建设网站
  • 电商货源网站大全长沙有哪些网站建设公司
  • 河南百度建个网站崇左北京网站建设
  • 求一些做里番的网站58同城天门网站建设
  • 做喷绘可以在那个网站找门户网站建设和运行招标公告
  • 做网站用什么主机好代理 指定网站 host
  • 网站建设化学图片个人网站做什么内容好
  • 建设网站与维护广西微信网站建设
  • qq官方网站进入宾馆会员卡管理系统
  • 网站建站外包公司网站建设公司官方网站
  • 第三方做网站wordpress后台演示系统
  • jquery前端框架教程网站分析与优化
  • 想做网站怎么跟做网站的公司谈判外部网站可以做链接到淘宝吗
  • 微博网站建设淘宝购物式wordpress
  • 网站网页设计咖啡网站设计模板
  • 蒙古文门户网站建设督导创意设计师个人网站
  • 义乌设计网站wordpress 付费 2016
  • 启东 网站开发wordpress 集成支付宝
  • asp.net做三个网站wordpress调用栏目
  • 烟台住房和规划建设局网站久治县网站建设公司
  • 免费cms建站中通物流企业网站建设书
  • 三合一网站开发有什么区别虚拟云电脑
  • 做网站签到挣钱吗做封面的免费网站
  • 怎样做百度口碑推广自己的网站公司logo设计理念
  • 黑龙江省建设教育信息网站wordpress错误500
  • 西安网站建设seo竞价网站建设适用税种
  • 怎样做网站平台赚钱吗做加盟网站哪个最好