From c90dac18b3a654c1e2bb3dd9682652009d7b0e3d Mon Sep 17 00:00:00 2001 From: Jaskaranbir Date: Wed, 13 Jul 2016 08:25:52 -0400 Subject: [PATCH] Fix broken link in challenge Manipulating Complex Objects Fixes JSON link in challenge: https://www.freecodecamp.com/challenges/manipulating-complex-objects (as described in issue #9704) --- .../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 3f8638d8595..5d10dcd27d7 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -4335,7 +4335,7 @@ "
var ourMusic = [
{
\"artist\": \"Daft Punk\",
\"title\": \"Homework\",
\"release_year\": 1997,
\"formats\": [
\"CD\",
\"Cassette\",
\"LP\" ],
\"gold\": true
}
];
", "This is an array which contains one object inside. The object has various pieces of metadata about an album. It also has a nested \"formats\" array. If you want to add more album records, you can do this by adding records to the top level array.", "Objects hold data in a property, which has a key-value format. In the example above, \"artist\": \"Daft Punk\" is a property that has a key of \"artist\" and a value of \"Daft Punk\".", - "JavaScript Object Notation or JSON is a related data interchange format used to store data.", + "JavaScript Object Notation or JSON is a related data interchange format used to store data.", "
{
\"artist\": \"Daft Punk\",
\"title\": \"Homework\",
\"release_year\": 1997,
\"formats\": [
\"CD\",
\"Cassette\",
\"LP\"
],
\"gold\": true
}
", "Note
You will need to place a comma in between every object in the array, unless it is the last object in the array.", "

Instructions

",