From 9ba65545b7143251b84fadb83a4ec813196e7748 Mon Sep 17 00:00:00 2001 From: Soyeon Jung Date: Wed, 5 Sep 2018 04:31:52 +0900 Subject: [PATCH] update js question (#473) * update js question * Add Question about event capturing --- Translations/Korean/README.md | 1 + questions/javascript-questions.md | 1 + 2 files changed, 2 insertions(+) diff --git a/Translations/Korean/README.md b/Translations/Korean/README.md index bc430b7..6094d31 100644 --- a/Translations/Korean/README.md +++ b/Translations/Korean/README.md @@ -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의 차이점은 무엇인가요? diff --git a/questions/javascript-questions.md b/questions/javascript-questions.md index f80809f..2d684ff 100644 --- a/questions/javascript-questions.md +++ b/questions/javascript-questions.md @@ -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?