Skip to content

Commit

Permalink
Time: 61 ms (5.79%), Space: 48.8 MB (37.23%) - LeetHub
Browse files Browse the repository at this point in the history
  • Loading branch information
joseantoniochacon committed Jun 14, 2024
1 parent 8c25fd4 commit 97d335b
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/**
* @return {Function}
*/
var createHelloWorld = function() {

return function createHelloWorld(...args) {
return "Hello World";
}
};

/**
* const f = createHelloWorld();
* f(); // "Hello World"
*/

0 comments on commit 97d335b

Please sign in to comment.