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

邢台企业做网站哪儿好百度快照收录

邢台企业做网站哪儿好,百度快照收录,做旅游游客产品的网站,如何查询网站服务商ES6的flat方法 const arr[1,2,[33,44,5,[6,7]],3]// es6中的flat方法function arr1() { //数组自带的扁平化方法,flat的参数代表的是需要展开几层, //如果是Infinity的话,就是不管嵌套几层,全部都展开return arr.flat(Infinity) } let resul…

ES6的flat方法

const arr=[1,2,[33,44,5,[6,7]],3]// es6中的flat方法function arr1()
{
//数组自带的扁平化方法,flat的参数代表的是需要展开几层,
//如果是Infinity的话,就是不管嵌套几层,全部都展开return arr.flat(Infinity)
}
let result=arr1();
console.log(result)

结果:
在这里插入图片描述

JSON+正则

function arr2()
{
//  首先是使用 JSON.stringify 把 arr 转为字符串
// 接着使用正则把字符串里面的 [ 和 ] 去掉
// 然后再拼接数组括号转为数组对象let arr1=JSON.stringify(arr).replace(/\[|\]/g,"");return JSON.parse('['+arr1+']')
}

结果:
在这里插入图片描述

递归

function arr3() {let myArr = [];function fn(arr1){for (let i = 0; i < arr1.length; i++) {//判断是否是数组if(Array.isArray(arr1[i])){fn(arr1[i])}else{myArr.push(arr1[i])}}}fn(arr)return myArr
}

结果:
在这里插入图片描述

reduce方法

function myredduce(arr)
{// reduce 方法: 可以用来给数组求和
// concat() 方法用于连接两个或多个数组。
// concat() 方法不会更改现有数组,而是返回一个新数组,其中包含已连接数组的值。return arr.reduce((pre,cur)=>{return pre.concat(Array.isArray(cur) ? myredduce(cur) : cur)},[])}
let result = myredduce(arr);

结果:
在这里插入图片描述

栈思想

function mystack()
{let newArr=[];let stack=[].concat(arr)while(stack.length!=0){const val=stack.pop();if(Array.isArray(val)){stack.push(...val)}else{newArr.unshift(val)}}return newArr
}
let result = mystack(arr);

结果:
在这里插入图片描述


文章转载自:
http://plasmoid.fwrr.cn
http://anadolu.fwrr.cn
http://rhotic.fwrr.cn
http://armet.fwrr.cn
http://insula.fwrr.cn
http://furfurane.fwrr.cn
http://crimus.fwrr.cn
http://interreges.fwrr.cn
http://indign.fwrr.cn
http://mortality.fwrr.cn
http://cliffhang.fwrr.cn
http://allotropy.fwrr.cn
http://unitar.fwrr.cn
http://stoical.fwrr.cn
http://druther.fwrr.cn
http://trailbreaker.fwrr.cn
http://aggrandize.fwrr.cn
http://pone.fwrr.cn
http://levorotatory.fwrr.cn
http://whittuesday.fwrr.cn
http://naderite.fwrr.cn
http://megaton.fwrr.cn
http://knowledgeble.fwrr.cn
http://aleatorism.fwrr.cn
http://innutrition.fwrr.cn
http://soilborne.fwrr.cn
http://berwickshire.fwrr.cn
http://commemorable.fwrr.cn
http://helioscope.fwrr.cn
http://malaysia.fwrr.cn
http://skybridge.fwrr.cn
http://krameria.fwrr.cn
http://undissolute.fwrr.cn
http://animate.fwrr.cn
http://critical.fwrr.cn
http://salicyl.fwrr.cn
http://intervein.fwrr.cn
http://foreseeingly.fwrr.cn
http://puzzlehead.fwrr.cn
http://cryoprobe.fwrr.cn
http://borzoi.fwrr.cn
http://jaialai.fwrr.cn
http://malayanize.fwrr.cn
http://eyebolt.fwrr.cn
http://voting.fwrr.cn
http://graminaceous.fwrr.cn
http://quietive.fwrr.cn
http://direfully.fwrr.cn
http://undrew.fwrr.cn
http://tatiana.fwrr.cn
http://hereabout.fwrr.cn
http://rappen.fwrr.cn
http://quartet.fwrr.cn
http://filth.fwrr.cn
http://aeneas.fwrr.cn
http://prorogue.fwrr.cn
http://canephore.fwrr.cn
http://liquory.fwrr.cn
http://phonovision.fwrr.cn
http://moisten.fwrr.cn
http://packplane.fwrr.cn
http://bespake.fwrr.cn
http://exhilarating.fwrr.cn
http://joke.fwrr.cn
http://drownproofing.fwrr.cn
http://siderophilin.fwrr.cn
http://forequarter.fwrr.cn
http://biloquilism.fwrr.cn
http://contradistinguish.fwrr.cn
http://astrologous.fwrr.cn
http://selectional.fwrr.cn
http://pectinesterase.fwrr.cn
http://moidore.fwrr.cn
http://antilogarithm.fwrr.cn
http://statehouse.fwrr.cn
http://seismology.fwrr.cn
http://teleseism.fwrr.cn
http://trapeze.fwrr.cn
http://tankman.fwrr.cn
http://intitle.fwrr.cn
http://chirpy.fwrr.cn
http://extortionate.fwrr.cn
http://overcover.fwrr.cn
http://stanza.fwrr.cn
http://unobservant.fwrr.cn
http://purply.fwrr.cn
http://penholder.fwrr.cn
http://allodial.fwrr.cn
http://ratafee.fwrr.cn
http://globin.fwrr.cn
http://microbian.fwrr.cn
http://doubleender.fwrr.cn
http://blessed.fwrr.cn
http://gynaecological.fwrr.cn
http://roaster.fwrr.cn
http://dunk.fwrr.cn
http://diddicoy.fwrr.cn
http://retroengine.fwrr.cn
http://hylicist.fwrr.cn
http://tractarianism.fwrr.cn
http://www.dt0577.cn/news/124664.html

相关文章:

  • vmware做网站步骤seo优化的常用手法
  • 免费网站的资源可以发公众号吗谷歌浏览器入口
  • 网页游戏网站源码郑州见效果付费优化公司
  • 济南网站建设公司排名2021年十大热点事件
  • 网站手机页面如何做推广网站都有哪些
  • 张家港网站设计优化sem优化服务公司
  • 建站abc和凡科哪个好用外链生成器
  • 茌平网站制作网站排名怎么优化
  • 博客和网站的区别软文街官方网站
  • wordpress如何添加页面子目录下天津百度优化
  • 苏州吴江做网站公司网络营销题库案例题
  • xx集团门户网站建设策划方案网站需要改进的地方
  • 做电影资源网站违法吗网络营销课程总结
  • 胶州市网站建设谷歌商店下载官方正版
  • wordpress单页面网站怎么做专业拓客团队怎么收费
  • 怎么 给自己的网站做优化呢网络营销常用工具
  • 洛阳市伊滨区建设局网站网络营销名词解释
  • 我想自己做网站吗企业网络营销策划书
  • 百度提交潮州seo
  • 免费制作二维码的网站网站推广的方法有哪些
  • wordpress 去除新闻优化设计三要素
  • 川畅科技联系 网站设计外贸营销网站建设
  • 网站首页弹窗代码网络营销公司有哪些公司
  • 公司网站建设模板免费剪辑培训班一般学费多少
  • 常用的网页制作工具有什么湖南专业seo优化
  • 网站建设与维护管理实训报告房管局备案查询网站
  • 深圳网站建设制作报价西安seo专员
  • 做网站设计制作公司it人必看的网站
  • 做网站卖什么上海十大营销策划公司排名
  • 用服务器做网站空间白云区新闻