From e0ace83573a8cacdf62f4be81754a8037e0b427b Mon Sep 17 00:00:00 2001 From: BKinahan Date: Tue, 21 Jun 2016 16:04:35 +0000 Subject: [PATCH] Correct stringify to JSON.stringify --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/01-front-end-development-certification/basic-javascript.json b/seed/challenges/01-front-end-development-certification/basic-javascript.json index 2cb9c20b33..5791dc7e21 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -4559,7 +4559,7 @@ " }", "};", "// Keep a copy of the collection for tests", - "var collectionCopy = JSON.parse(stringify(collection));", + "var collectionCopy = JSON.parse(JSON.stringify(collection));", "", "// Only change code below this line", "function updateRecords(id, prop, value) {",