summary refs log tree commit diff stats
path: root/javascript/two-fer/two-fer.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/two-fer/two-fer.js')
-rw-r--r--javascript/two-fer/two-fer.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/javascript/two-fer/two-fer.js b/javascript/two-fer/two-fer.js
new file mode 100644
index 0000000..2349ad7
--- /dev/null
+++ b/javascript/two-fer/two-fer.js
@@ -0,0 +1,3 @@
+export const twoFer = (name = "you") => {
+    return "One for " + name + ", one for me.";
+};