2667-create-hello-world-function

DevGod
Vtuber
/** * @return {Function} */var createHelloWorld = function() { return function(...args) { return "Hello World"; }};
/** * const f = createHelloWorld(); * f(); // "Hello World" */