From bb91808da3c50c52b89ba0232e77820274cb7b02 Mon Sep 17 00:00:00 2001 From: Jason Williams Date: Fri, 2 Mar 2018 13:22:53 +0000 Subject: [PATCH] remove document write question (#466) --- questions/javascript-questions.md | 1 - 1 file changed, 1 deletion(-) diff --git a/questions/javascript-questions.md b/questions/javascript-questions.md index 627166c..3a0f2f6 100644 --- a/questions/javascript-questions.md +++ b/questions/javascript-questions.md @@ -16,7 +16,6 @@ * Difference between: `function Person(){}`, `var person = Person()`, and `var person = new Person()`? * What's the difference between `.call` and `.apply`? * Explain `Function.prototype.bind`. -* When would you use `document.write()`? * What's the difference between feature detection, feature inference, and using the UA string? * Explain Ajax in as much detail as possible. * What are the advantages and disadvantages of using Ajax?