From b2be682c6e26cd4d5f3a39d7e91626d985217e8f Mon Sep 17 00:00:00 2001 From: Michael Lapierre-Ouellette <112026857+mlouellette@users.noreply.github.com> Date: Fri, 7 Oct 2022 23:48:09 -0400 Subject: [PATCH] Michael Commit --- puzzle.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/puzzle.js b/puzzle.js index b809cc9..af519d2 100644 --- a/puzzle.js +++ b/puzzle.js @@ -1,6 +1,6 @@ const variablesReferenceTest = () => { const x = { attribute1: 1, attribute2: 2 }; - const y = x; + const y = 7; x.attribute1 = 3; //Modify the code above so we reach the "throw 'False'" statement @@ -15,4 +15,4 @@ try { variablesReferenceTest(); } catch (error) { console.log(error) -} \ No newline at end of file +}