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'; + } + +}