function solution(clothes) {
var answer = 1;
let clothesSummary={};
clothes.map((el)=>{
let [type, name]=el;
if (clothesSummary.hasOwnProperty(name)){
clothesSummary[name]+=1;
}else{
clothesSummary[name]=1;
}
})
for (let key in clothesSummary){
answer*=(clothesSummary[key]+1)
}
return answer-1;
}
https://velog.io/@sean2337/JavaScript-%ED%95%B4%EC%8B%9C-%EC%A0%81%EC%9A%A9-%EB%B0%A9%EB%B2%95