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

6 lines
77 B
JavaScript
Raw Normal View History

const helloWorld = function() {
return ''
};
2017-08-17 18:47:39 +00:00
module.exports = helloWorld;