odin-javascript-exercises/helloWorld/helloWorld.js
vrarora 19f6888688
Update helloWorld.js
I added the answer instead of empty strings as solution must be added in the solutions branch.
2020-12-22 14:01:32 +05:30

5 lines
86 B
JavaScript

var helloWorld = function() {
return 'Hello, World!'
}
module.exports = helloWorld