const _findMostType = array => { let max = 0; let res = []; let map = new Map(); // 统计各类型数量 for(let ele of array){ let type = typeof ele; if(map.has(type)){ let count = map.get(type); map.set(type, ++count); max = Math.max(max, coun...