HTMLify

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

/**
 * const f = createHelloWorld();
 * f(); // "Hello World"
 */

Comments