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

6 lines
77 B
JavaScript

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