From 4741ac6b51761ca0a2013cc46bc3b0441f8857c4 Mon Sep 17 00:00:00 2001 From: Anthony Grullon Date: Wed, 27 Jul 2016 10:52:22 -0400 Subject: [PATCH] Changed the Note in manipulating-complex-objects challenge to make it less ambiguous --- .../basic-javascript.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 44156def7d..e673e9bda0 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -53,7 +53,7 @@ "Lorsque vous écrivez votre code, vous devriez ajouter régulièrement des commentaires pour clarifier l'objectif de certaines parties de votre code. De bons commentaires peuvent aider les autres et vous-même à mieux comprendre votre code.", "

Instructions

", "Essayez de créer un commentaire de chaque type." - ] + ] }, { "id": "bd7123c9c443eddfaeb5bdef", @@ -110,7 +110,7 @@ "

Instructions

", "Utilisez le mot-clé var pour créer une variable appelée monNom", "Conseil
Regardez à l'exemple de notreNom si vous vous êtes bloqué." - ] + ] }, { "id": "56533eb9ac21ba0edf2244a8", @@ -4364,7 +4364,7 @@ "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.", "
{
\"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.", + "Note
You will need to place a comma after every object in the array, unless it is the last object in the array.", "

Instructions

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