1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 01:36:57 +02:00
LeetCode/js/create-hello-world-function.js

14 lines
204 B
JavaScript
Raw Normal View History

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