odin-javascript-exercises/helloWorld/helloWorld.js
xandora c8f3ff9d1b
Update helloWorld/helloWorld.js
semicolon after function expression
2021-05-18 11:43:45 +12:00

5 lines
77 B
JavaScript

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