added ES5 vs ES6 class (#414)

This commit is contained in:
Vetrivel 2018-01-06 14:02:22 +05:30 committed by Vasiliy Vanchuk
parent a3ffd48e88
commit 15a544162c
1 changed files with 1 additions and 0 deletions

View File

@ -155,6 +155,7 @@ duplicate([1,2,3,4,5]); // [1,2,3,4,5,1,2,3,4,5]
* 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() {}`
* What are the differences between variables created using `let`, `var` or `const`?
* What are the differences between ES6 class and ES5 function constructors?
#### Testing Questions: