Create Hello World Function
Write a function createHelloWorld. It should return a new function that always returns "Hello World".
Example 1:
Input: args = []
Output: "Hello World"
Explanation:
const f = createHelloWorld();
f(); // "Hello World"
The function returned by create...
abhishek-dandriyal.hashnode.dev1 min read