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

7 lines
100 B
JavaScript

const helloWorld = function() {
return ''
};
module.exports = helloWorld;
console.log("testing")