항상 Hello World
를 리턴하는 함수를 리턴하는 함수를 작성하라.
Input: args = []
Output: "Hello World"
Explanation:
const f = createHelloWorld();
f(); // "Hello World"
The function returned by createHelloWorld should always return "Hello World".
Input: args = [{},null,42]
Output: "Hello World"
Explanation:
const f = createHelloWorld();
f({}, null, 42); // "Hello World"
Any arguments could be passed to the function but it should still always return "Hello World".
var createHelloWorld = function() {
return function() {
return "Hello World"
}
};
createHelloWorld
함수는 함수를 리턴하는 함수이다.
그리고 그 함수는 항상Hello World
를 리턴하는 함수이다.