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

6 lines
86 B
JavaScript
Raw Normal View History

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