Exercism Hello World algorithm solution
var HelloWorld = function() {}; HelloWorld.prototype.hello = function(input) { // // YOUR CODE GOES HERE input = input || "World"; return "Hello, " + input + "!"; }; module.exports = HelloWorld;