Back to all solutions
#2667 - Create Hello World Function
Problem Description
Write a function createHelloWorld. It should return a new function that always returns "Hello World".
Solution
/**
* @return {Function}
*/
var createHelloWorld = function() {
return () => 'Hello World';
};