diff --git a/solutions/javascript/hello-world/1/hello-world.js b/solutions/javascript/hello-world/1/hello-world.js new file mode 100644 index 0000000..351236c --- /dev/null +++ b/solutions/javascript/hello-world/1/hello-world.js @@ -0,0 +1,4 @@ +export function hello() { + return 'Hello, World!'; + +}