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