HTMLify
LeetCode - Create Hello World Function - JavaScript
Views: 268 | Author: abh
/**
* @return {Function}
*/
var createHelloWorld = function() {
return function(...args) {
return "Hello World";
}
};
/**
* const f = createHelloWorld();
* f(); // "Hello World"
*/