HTMLify

Q2667_Create_Hello_World_Function.js
Views: 92 | Author: djdj
var createHelloWorld = function() {
    
    return function(...args) {
        return "Hello World"
    }
};

Comments