[오전수업] Conllection, Set(forEach/for in문, iterate/for of문),Map
Conllection 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 let set = new Set(); set.add(5); set.add(5); set.add(5); set.add(5); set.add(5); set.add(6); console.log(set.size); //set을 쓰는 이유: 중복제거 let arr =[2,2,2,3,3,3,5,8]; console.log(arr.length); let lotto = new Set(arr); console.log(lotto.size); //내가 가지고 있는 데이터를 꺼낼 때 if..
2021. 6. 17.