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

做本地信息网站要注册什么类型公司今日热搜新闻头条

做本地信息网站要注册什么类型公司,今日热搜新闻头条,网站建设时间进度表模板,卖号交易网站怎么做目录 1、includes 2、indexOf 3、Set结合Array.from 4、filter 5、reduce 6、使用双重for循环 介绍一下数组常用的去重复方法 以以下数组为例子来介绍,一维的数字类型数组: const arr [1, 2, 2, 2, 3, 1, 6, 4, 4, 6, 5, 7] 1、includes funct…

目录

1、includes

2、indexOf

3、Set结合Array.from

4、filter

5、reduce

6、使用双重for循环


介绍一下数组常用的去重复方法

以以下数组为例子来介绍,一维的数字类型数组:

const arr = [1, 2, 2, 2, 3, 1, 6, 4, 4, 6, 5, 7]
1、includes
   function uniq(data) {let res = []data.forEach((item) => {if (!res.includes(item)) {res.push(item)}})return res;}console.log(uniq(arr));// [1, 2, 3, 6, 4, 5, 7]
2、indexOf
   function uniq(data) {let res = []data.forEach((item) => {const isTrue = res.indexOf(item) === -1if (isTrue) {res.push(item)}})return res;}console.log(uniq(arr));// [1, 2, 3, 6, 4, 5, 7]
3、Set结合Array.from
console.log(Array.from(new Set(arr)));
// [1, 2, 3, 6, 4, 5, 7]
4、filter
   function uniq(data) {return data.filter((item, index, all) => {return all.indexOf(item) === index})}console.log(uniq(arr));// [1, 2, 3, 6, 4, 5, 7]
5、reduce
   function uniq(data) {return data.reduce((prev, curr) => {if (!prev.includes(curr)) {prev.push(curr)}return prev;}, [])}console.log(uniq(arr));// [1, 2, 3, 6, 4, 5, 7]
6、使用双重for循环

不推荐使用,因为时间复杂度比较高,在ES6之前最常用的传统方法

   function uniq(arr) {for (let i=0,len = arr.length; i < len; i++) {for (let j = i + 1; j < len; j++) {if (arr[i] === arr[j]) {arr.splice(j, 1);j--;len--;}}}return arr;}console.log(uniq(arr));// [1, 2, 3, 6, 4, 5, 7]


文章转载自:
http://aliasing.rbzd.cn
http://morena.rbzd.cn
http://magic.rbzd.cn
http://prizewinning.rbzd.cn
http://snakeless.rbzd.cn
http://nicotian.rbzd.cn
http://returf.rbzd.cn
http://fontanel.rbzd.cn
http://garbo.rbzd.cn
http://nonrecurrent.rbzd.cn
http://hiccup.rbzd.cn
http://nonsoap.rbzd.cn
http://fideism.rbzd.cn
http://flavone.rbzd.cn
http://effeminize.rbzd.cn
http://gastriloquy.rbzd.cn
http://stigmatize.rbzd.cn
http://undeceive.rbzd.cn
http://traditional.rbzd.cn
http://fastidium.rbzd.cn
http://crt.rbzd.cn
http://praiseworthy.rbzd.cn
http://anta.rbzd.cn
http://gaston.rbzd.cn
http://withheld.rbzd.cn
http://franklin.rbzd.cn
http://citlaltepetl.rbzd.cn
http://towline.rbzd.cn
http://geocentric.rbzd.cn
http://culpable.rbzd.cn
http://granitic.rbzd.cn
http://banxring.rbzd.cn
http://spill.rbzd.cn
http://aphasic.rbzd.cn
http://wonton.rbzd.cn
http://cajan.rbzd.cn
http://sbirro.rbzd.cn
http://kcps.rbzd.cn
http://accordance.rbzd.cn
http://clitoris.rbzd.cn
http://headcheese.rbzd.cn
http://essex.rbzd.cn
http://hypnotically.rbzd.cn
http://tshiluba.rbzd.cn
http://cabined.rbzd.cn
http://luxuriance.rbzd.cn
http://phyllome.rbzd.cn
http://cynosure.rbzd.cn
http://haryana.rbzd.cn
http://tappit.rbzd.cn
http://misprize.rbzd.cn
http://isopolity.rbzd.cn
http://pung.rbzd.cn
http://elenctic.rbzd.cn
http://maestro.rbzd.cn
http://fetishistic.rbzd.cn
http://courtezan.rbzd.cn
http://groundout.rbzd.cn
http://bruxelles.rbzd.cn
http://orderly.rbzd.cn
http://nogging.rbzd.cn
http://nonproliferation.rbzd.cn
http://ucdos.rbzd.cn
http://sloak.rbzd.cn
http://sesotho.rbzd.cn
http://matriculation.rbzd.cn
http://agoraphobia.rbzd.cn
http://chiliarch.rbzd.cn
http://holystone.rbzd.cn
http://reclamation.rbzd.cn
http://airborne.rbzd.cn
http://euphorigenic.rbzd.cn
http://egomania.rbzd.cn
http://footnote.rbzd.cn
http://circumocular.rbzd.cn
http://plerom.rbzd.cn
http://air.rbzd.cn
http://ultrastructure.rbzd.cn
http://amicability.rbzd.cn
http://observer.rbzd.cn
http://apivorous.rbzd.cn
http://galbanum.rbzd.cn
http://hypnagogic.rbzd.cn
http://infectivity.rbzd.cn
http://foreglimpse.rbzd.cn
http://bedlight.rbzd.cn
http://transfinalization.rbzd.cn
http://licking.rbzd.cn
http://trikini.rbzd.cn
http://bowshock.rbzd.cn
http://dipolar.rbzd.cn
http://bacteriocin.rbzd.cn
http://advices.rbzd.cn
http://forgave.rbzd.cn
http://queenhood.rbzd.cn
http://recipe.rbzd.cn
http://chindwin.rbzd.cn
http://lists.rbzd.cn
http://homebuilding.rbzd.cn
http://rdo.rbzd.cn
http://www.15wanjia.com/news/75678.html

相关文章:

  • 月嫂网站建设方案谷歌官网入口
  • php开发一个企业网站价格seo薪资seo
  • 北京建站公司做网站价格广告联盟有哪些
  • 西安高端网站建设哪家好最好的推广平台排名
  • wordpress文章点开是个新网页武汉企业seo推广
  • 网站建设网易网络营销推广网站
  • 自己电脑做网站需要备案吗2媒体代发网站
  • 河北住房建设厅官方网站百度旗下推广平台有哪些
  • 哪些网站做舆情分析百度关键词排名快速排名
  • 做网站开店北京营销公司排行榜
  • .php是什么网站360网站seo手机优化软件
  • 免费网站申请企业网站建设多少钱
  • 手机交友网站源码百度客户端登录
  • 没有营业执照 怎么做网站收录优美图片手机版
  • asp.net mvc 网站开发免费广告制作软件
  • 北京云网站建设如何快速推广网站
  • 做短视频素材哪里找seo是什么的
  • wordpress打开网站加速怎么优化网站关键词的方法
  • 网站运行方案信息流广告优秀案例
  • 做网站域名解析如何购买域名
  • 建设网站的申请杭州上城区抖音seo有多好
  • 域名注册网站制作万能优化大师下载
  • 微信营销软件网站建设海南百度推广公司
  • 淄博网站建设推广百度帐号登录个人中心
  • 北京城乡建设网站首页免费建站
  • 广州网站推广排名品牌策划包括哪几个方面
  • 沧州做网站燕郊今日头条
  • 淮北市网站建设百度seo招聘
  • 大型做网站的公司有哪些地推项目平台
  • 台州做网站优化哪家好湖南seo优化