This website requires JavaScript.
Explore
Help
Sign In
tod
/
odin-default-js-exercises
Watch
1
Star
0
Fork
You've already forked odin-default-js-exercises
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
b984cb4c6f
odin-default-js-exercises
/
helloWorld
/
helloWorld.js
6 lines
87 B
JavaScript
Raw
Normal View
History
Unescape
Escape
hello world
2017-08-17 18:47:39 +00:00
var
helloWorld
=
function
(
)
{
Update helloWorld.js I added the answer instead of empty strings as solution must be added in the solutions branch.
2020-12-22 08:31:32 +00:00
return
'Hello, World!'
hello world
2017-08-17 18:47:39 +00:00
}
Added jest
2021-03-03 02:13:24 +00:00
module
.
exports
=
helloWorld
;