Update helloWorld.js

This commit is contained in:
SamihaSyeed 2021-08-27 16:55:49 +05:30 committed by GitHub
parent 8b041f0ab4
commit cb3cfd9c0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
const helloWorld = function() {
return 'Hello, World!'
};
}
module.exports = helloWorld
module.exports = helloWorld;