odin-javascript-exercises/01_helloWorld/helloWorld.js
2021-08-07 14:52:11 +08:00

5 lines
77 B
JavaScript

const helloWorld = function() {
return ''
};
module.exports = helloWorld;