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

6 lines
76 B
JavaScript
Raw Normal View History

const helloWorld = function() {
2021-03-09 11:12:25 +00:00
return ''
2017-08-17 18:47:39 +00:00
}
2021-03-03 02:13:24 +00:00
module.exports = helloWorld;