This website requires JavaScript.
Explore
Help
Sign In
tod
/
odin-js-fundamentals-part-4
Watch
1
Star
0
Fork
You've already forked odin-js-fundamentals-part-4
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
4cb2fa66b9
odin-js-fundamentals-part-4
/
01_helloWorld
/
helloWorld.js
6 lines
91 B
JavaScript
Raw
Normal View
History
Unescape
Escape
Initial commit, files from default-js-exercises
2024-01-05 19:11:55 +00:00
const
helloWorld
=
function
(
)
{
Fixed in exercise 01
2024-01-05 19:38:35 +00:00
return
'Hello, World!'
;
Initial commit, files from default-js-exercises
2024-01-05 19:11:55 +00:00
}
;
module
.
exports
=
helloWorld
;