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

6 lines
88 B
JavaScript
Raw Normal View History

const helloWorld = function() {
2018-10-07 13:46:04 +00:00
return 'Hello, World!'
2017-08-17 18:47:39 +00:00
}
2018-06-09 00:44:45 +00:00
module.exports = helloWorld