From 7ca5cf953c9ea1ae78fa8dd21a7a32574f198c86 Mon Sep 17 00:00:00 2001 From: Matsuko Friedland Date: Mon, 27 Nov 2017 13:47:44 -0800 Subject: [PATCH] Add person object to day 14 starter file Shown in starter file in video, missing from actual starter file. --- 14 - JavaScript References VS Copying/index-START.html | 4 ++++ 1 file changed, 4 insertions(+) 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: