码迷,mamicode.com
首页 > 编程语言 > 详细

在Array的原型上实现数组的去重

时间:2019-08-03 14:40:32      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:new   共享   repeat   on()   创建   div   array   prot   实现   

在原型对象上创建的方法是共享的

Array.prototype.norepeat = function(){
    //this指向要去重的数组
    return [...new Set(this)];
} 
var arr = [1,2,5,1,5,15,1,3];
var res = arr.norepeat();
console.log(res)    //[1, 2, 5, 15, 3]

  

在Array的原型上实现数组的去重

标签:new   共享   repeat   on()   创建   div   array   prot   实现   

原文地址:https://www.cnblogs.com/ccyq/p/11294582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!