Merge pull request #347 from peizguo/anonymous_and_named_fn_differences

Added JS question for differences of named function and anonymous function
This commit is contained in:
Darcy Clarke 2016-03-17 15:32:35 -04:00
commit 237110068c
1 changed files with 1 additions and 0 deletions

View File

@ -151,6 +151,7 @@ duplicate([1,2,3,4,5]); // [1,2,3,4,5,1,2,3,4,5]
* Explain the difference between synchronous and asynchronous functions.
* What is event loop?
* What is the difference between call stack and task queue?
* Explain the differences on the usage of `foo` between `function foo() {}` and `var foo = function() {}`
#### Testing Questions: