QQ群招募中:646258285(招募中,没几个人说话),
需要交流的朋友可以直接加我微信( DntBeliv )或QQ( 1121864253 )
js获取对象,数组所有属性键值(key)和对应值(value)的方法
方法一[实用]====
let tempArr= [1,2,3,4,5,1,2];
if (tempArr.length > 1) {
let rep = [];
tempArr.forEach((item, index) => {
if (tempArr.indexOf(item) !== index) {
// 匹配数组元素第一个i