From 38ce235802c6ab18093291bce076f4360496103a Mon Sep 17 00:00:00 2001 From: 10gianluca <113924900+10gianluca@users.noreply.github.com> Date: Fri, 7 Oct 2022 15:24:45 -0400 Subject: [PATCH] first commit --- puzzle.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puzzle.js b/puzzle.js index b809cc9..8defa64 100644 --- a/puzzle.js +++ b/puzzle.js @@ -1,6 +1,6 @@ const variablesReferenceTest = () => { const x = { attribute1: 1, attribute2: 2 }; - const y = x; + const y = 5; x.attribute1 = 3; //Modify the code above so we reach the "throw 'False'" statement