From 436636600c0c64ac6d3460cebda428659044cab1 Mon Sep 17 00:00:00 2001 From: Pavel Ermolin Date: Thu, 18 Jan 2018 18:29:52 +0000 Subject: [PATCH] adds a couple of ES6 related questions (partly addresses #421) (#440) --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index d40c819..a85f74c 100755 --- a/README.md +++ b/README.md @@ -159,6 +159,9 @@ duplicate([1,2,3,4,5]); // [1,2,3,4,5,1,2,3,4,5] * Can you give an example for destructuring an object or an array? * ES6 Template Literals offer a lot of flexibility in generating strings, can you give an example? * Can you give an example of a curry function and why this syntax offers an advantage? +* What are the benefits of using `spread syntax` and how is it different from `rest syntax`? +* How can you share code between files? +* Why you might want to create static class members? #### Testing Questions: