All prompts are owned by LeetCode. To view the prompt, click the title link above.
First completed : July 09, 2024
Last updated : July 09, 2024
Related Topics : N/A
Acceptance Rate : 81.75 %
/**
* @return {Function}
*/
var createHelloWorld = function() {
return function(...args) {
return 'Hello World'
}
};
/**
* const f = createHelloWorld();
* f(); // "Hello World"
*/