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
77c5d64b37
odin-default-js-exercises
/
helloWorld
/
helloWorld.js
6 lines
91 B
JavaScript
Raw
Normal View
History
Unescape
Escape
update var to const in function declarations
2021-05-09 12:06:18 +00:00
const
helloWorld
=
function
(
)
{
fixed semicolon
2022-01-23 20:17:39 +00:00
return
'Hello, World!'
;
Grammar cleanups, trailing semicolon for function expressions
2021-05-10 08:08:31 +00:00
}
;
hello world
2017-08-17 18:47:39 +00:00
Grammar cleanups, trailing semicolon for function expressions
2021-05-10 08:08:31 +00:00
module
.
exports
=
helloWorld
;