summary refs log tree commit diff stats
path: root/javascript/hello-world/hello-world.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/hello-world/hello-world.js')
-rw-r--r--javascript/hello-world/hello-world.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/javascript/hello-world/hello-world.js b/javascript/hello-world/hello-world.js
new file mode 100644
index 0000000..7e071c7
--- /dev/null
+++ b/javascript/hello-world/hello-world.js
@@ -0,0 +1,3 @@
+export const hello = () => {
+    return "Hello, World!";
+};