-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[24/09/19-25] 안내 및 질문 모음집 #47
Comments
33장
javascriptCopyconst privateProperty = Symbol('privateProperty');
class MyClass {
constructor() {
this[privateProperty] = 'This is private';
}
getPrivateProperty() {
return this[privateProperty];
}
} 34장
36장
37장
|
33장
34장
36장
37장
|
33장symbol이 프로퍼티 키 충돌을 방지할 수 있다는데, 실제로 팀 협업 개발할때 어떤 식으로 사용하면서 충돌을 방지 하는지 (김주영)
34장for…of 문과 for문과 forEach 문을 이용하여 배열을 순회하는데, 각각 어떤 경우에 사용하는게 좋은지 (알고리즘 문제 풀이 관점에서?) (김주영)
리액트에서 map 반복문을 많이 사용한다고 알고 있는데, for..of문도 간혹사용한다고 알고 있습니다 for...of문을 사용하면 좋은 경우가 궁금합니다. (조천산)
36장useState에서 배열 디스트럭처링을 사용하는 이유? (김민석)
유사 배열 객체는 스프레드 연산자 적용이 안되고, 일반 객체는 되는 것인가? (김민정)
const arrayLike = { 0: 'a', 1: 'b', length: 2 };
const arr = [...Array.from(arrayLike)]; // 가능 37장Map은 중복된 키를 갖는 요소가 존재하면 값을 덮어씌우는데, 객체는 어떠한가? (김민정)
const obj = { a: 1, a: 2 };
console.log(obj); // { a: 2 }
const map = new Map();
map.set('a', 1);
map.set('a', 2);
console.log(map); // Map(1) { 'a' => 2 } 두 가지 경우 모두 중복된 키의 마지막 값이 유지가 된다. |
33장
34장
36장
37장
|
33장
34장
36장
37장
|
📚 분량
🎤 발표자
김민정
질문
33장
34장
36장
37장
The text was updated successfully, but these errors were encountered: