From 3fc2b5c6c0aa4a90dbdc870391ba128800c1997c Mon Sep 17 00:00:00 2001 From: Eric Leung Date: Sun, 10 Jan 2016 00:00:57 -0800 Subject: [PATCH] Add note on adding commas between JSON objects --- .../01-front-end-development-certification/basic-javascript.json | 1 + 1 file changed, 1 insertion(+) 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 8da8aff3be6..3a8f7c2afde 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -3467,6 +3467,7 @@ "Here is an example of a JSON object:", "
var ourMusic = [
{
\"artist\": \"Daft Punk\",
\"title\": \"Homework\",
\"release_year\": 1997,
\"formats\": [
\"CD\",
\"Cassette\",
\"LP\" ],
\"gold\": true
}
];
", "This is an array of objects and the object has various pieces of metadata about an album. It also has a nested formats array. Additional album records could be added to the top level array.", + "Note
You will need a comma in between objects in JSON objects with more than one object in the array.", "

Instructions

", "Add a new album to the myMusic JSON object. Add artist and title strings, release_year number, and a formats array of strings." ],