From 77e1a8ab708a93caa0fceab26343b08eb150a96c Mon Sep 17 00:00:00 2001 From: Jordan Carroll Date: Thu, 8 Oct 2020 20:57:12 +0000 Subject: [PATCH] Done. --- index.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/index.js b/index.js index 765e13650..257b47f36 100644 --- a/index.js +++ b/index.js @@ -11,22 +11,22 @@ function yourAnimal() { // How can we make sure that this function // and the above function both pass? // P.S.: Hard-coding 'cat' below will not work + var animal = 'cat' return animal } + function add2(n) { + const two = 2; return n + two - - // Feel free to move things around! - const two = 2 } -var funkyFunction = function() { - return function() { - return "FUNKY!" +var funkyFunction = function outsideFunction() { + return function insideFunction() { + return "FUNKY!" } } // We want to set theFunk equal to "FUNKY!" using our funkyFunction. // NOTE: you only need to modify the code below this line. -var theFunk = funkyFunction +var theFunk = funkyFunction()() \ No newline at end of file