Advertisement
2667. Create Hello World Function
UnknownView on LeetCode
2667.ts
TypeScript
function createHelloWorld() {
return function (...args): string {
return "Hello World";
};
}
/**
* const f = createHelloWorld();
* f(); // "Hello World"
*/
Advertisement
Was this solution helpful?