diff --git a/14 - JavaScript References VS Copying/index-START.html b/14 - JavaScript References VS Copying/index-START.html index 73cd5ae5a5..f978b7446f 100644 --- a/14 - JavaScript References VS Copying/index-START.html +++ b/14 - JavaScript References VS Copying/index-START.html @@ -37,6 +37,10 @@ // The same thing goes for objects, let's say we have a person object // with Objects + const person = { + name: 'Wes Bos', + age: 80 + }; // and think we make a copy: