odin-default-js-exercises/helloWorld/helloWorld.js

6 lines
86 B
JavaScript
Raw Normal View History

var helloWorld = function() {
return 'Hello, World!'
2017-08-17 18:47:39 +00:00
}
module.exports = helloWorld