1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/problems/create-hello-world-function.js
2023-05-12 17:29:13 +02:00

13 lines
204 B
JavaScript

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