un-backticked "undeclared"

"undeclared" is not actually a keyword in JS and shouldn't be styled as code.
This commit is contained in:
Nathan Perry 2015-07-02 22:58:11 -04:00
parent f13c29ef30
commit 7139e58f7d
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ This file contains a number of front-end interview questions that can be used wh
* What do you think of AMD vs CommonJS?
* Explain why the following doesn't work as an IIFE: `function foo(){ }();`.
* What needs to be changed to properly make it an IIFE?
* What's the difference between a variable that is: `null`, `undefined` or `undeclared`?
* What's the difference between a variable that is: `null`, `undefined` or undeclared?
* How would you go about checking for any of these states?
* What is a closure, and how/why would you use one?
* What's a typical use case for anonymous functions?