From 4aa2de0ca012caee684f0de88cf6e8b513ecbbb9 Mon Sep 17 00:00:00 2001 From: Abby Gottlich Date: Thu, 11 Oct 2018 19:52:36 -0500 Subject: [PATCH] challenge --- thisAndThat.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 thisAndThat.js diff --git a/thisAndThat.js b/thisAndThat.js new file mode 100644 index 000000000..4870b150a --- /dev/null +++ b/thisAndThat.js @@ -0,0 +1,8 @@ +const myFunction = (arg1, arg2) =>{ + if(arg1 == arg2){ + return 'this'; + } else { + return 'that'; + } + +}