Files
odin-javascript-exercises/helloWorld/helloWorld.js
T

6 lines
87 B
JavaScript

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