消除数组中重复元素的方法

for(var i=0;i

  if(arr2.indexOf(arr1[i])<0){

    arr2.push(arr1[i]);

  }

}

注:indexof()方法返回指定字符串在对象中首次出现的位置

  index对大小写敏感

  如果对象中没有找到指定字符串,index()返回-1

转载于:https://www.cnblogs.com/frontendnotes/p/6421311.html

你可能感兴趣的:(消除数组中重复元素的方法)