Added JS question for usage between named function and anonyouse fuction assigned to variable

This commit is contained in:
Peizong Guo 2016-03-16 22:24:06 -04:00
parent 9cdc327156
commit a2d6b4054f
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: