update js question (#473)

* update js question

* Add Question about event capturing
This commit is contained in:
Soyeon Jung 2018-09-05 04:31:52 +09:00 committed by Vasiliy Vanchuk
parent 169a8b0fa0
commit 9ba65545b7
2 changed files with 2 additions and 0 deletions

View File

@ -129,6 +129,7 @@ function Person(){} var person = Person() var person = new Person()
* 기존에 JavaScript 템플릿을 사용한 적이 있나요? 만약에 있다면, 어떠한 방식으로 사용했는지 말씀해주세요.
* "호이스팅(Hoisting)"에 대해서 설명하세요.
* 이벤트 버블링(Event Bubbling)에 대해서 설명하세요.
* 이벤트 캡쳐링(Event Capturing)에 대해서 설명하세요.
* "속성(Attribute)"와 "요소(property)"의 차이가 무엇인가요?
* 내장된 JavaScript 객체를 확장하는 것이 좋지 않은 이유는 무엇인가요?
* document load event와 DOMContentLoaded event의 차이점은 무엇인가요?

View File

@ -24,6 +24,7 @@
* If so, what libraries have you used?
* Explain "hoisting".
* Describe event bubbling.
* Describe event capturing.
* What's the difference between an "attribute" and a "property"?
* Why is extending built-in JavaScript objects not a good idea?
* Difference between window load event and document DOMContentLoaded event?