30 Days of JavaScript on LeetCode
2667. Create Hello World Function
/**
* @return {Function}
*/
var createHelloWorld = function() {
return function(...args) {
return "Hello World"
}
};
/**
* const f = createHelloWorld();
* f(); // "Hello World"
*/
2620...
tapanrachchh.hashnode.dev11 min read