-
Add(1)(2)(3)…(n)() in Javascript | Sum(1,2)(3,4) | Currying | Javascript Interview | Walmart
Write a JS function to implement Add(1)(2)(3)…(n)() or just add(1)(2)(3) that returns 6 or may be sum(1,2)(3,4) that returns 10? This is a quite famous Javascript interview question with several complex variations. Goal…
-
How to flatten a nested array in JS | Recursion | Javascript Interview | 1
How to flatten a nested array? I have been asked this question number of times during my Javascript Interviews. You aren’t allowed to use the inbuilt Flat() in Javascript Interviews. How to flatten…