码迷,mamicode.com
首页 > Web开发 > 详细

JS去重-删除连续重复的值

时间:2018-06-17 13:34:04      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:func   ret   turn   length   去重   连续   赋值   span   地方   

function removeRepetition(str) {
                var result = "",
                    unStr;
                for(var i=0,len=str.length;i<len;i++){
                    //因为unStr始终是当前的str.charAt(i)的前一个字母   因为unStr的赋值unStr=str.charAt(i)是在上一轮循环完成的
                    //所以可以删除连续重复的地方
                    if(str.charAt(i)!==unStr){
                        unStr=str.charAt(i);
                        result+=unStr;
                        console.log(result);
                    }
                }
                return result;
            }

 

JS去重-删除连续重复的值

标签:func   ret   turn   length   去重   连续   赋值   span   地方   

原文地址:https://www.cnblogs.com/cmy1996/p/9192553.html

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