From a2d6b4054f5d60136c5fe233a70ee4205ad34fd4 Mon Sep 17 00:00:00 2001 From: Peizong Guo Date: Wed, 16 Mar 2016 22:24:06 -0400 Subject: [PATCH] Added JS question for usage between named function and anonyouse fuction assigned to variable --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d4afbb1..2708b8d 100755 --- a/README.md +++ b/README.md @@ -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: