From c9f572d2710707205dd17e1503fed2dbee90a0e0 Mon Sep 17 00:00:00 2001 From: bogadodiegoh Date: Sun, 10 Jun 2018 20:46:46 -0300 Subject: [PATCH] fix(seed): updated basic javascript URLs for hints (#17445) * Updated json file with right url values * Updated url links after review * Updated another broken url link after review --- .../basic-javascript.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json index edce769e22..0a2a90a224 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json +++ b/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json @@ -6757,9 +6757,9 @@ "If prop is \"tracks\" but the album doesn't have a \"tracks\" property, create an empty array before adding the new value to the album's corresponding property.", "If prop is \"tracks\" and value isn't empty (\"\"), push the value onto the end of the album's existing tracks array.", "If value is empty (\"\"), delete the given prop property from the album.", - "Hints
Use bracket notation when accessing object properties with variables.", + "Hints
Use bracket notation when accessing object properties with variables.", "Push is an array method you can read about on Mozilla Developer Network.", - "You may refer back to Manipulating Complex Objects Introducing JavaScript Object Notation (JSON) for a refresher." + "You may refer back to Manipulating Complex Objects Introducing JavaScript Object Notation (JSON) for a refresher." ], "releasedOn": "January 1, 2016", "solutions": [ @@ -6807,7 +6807,7 @@ "Si la propiedad prop es \"tracks\" y value no está en blanco, empuja (push) el valor value al final del vector tracks.", "Si el valor value está en blanco, elimina esa prop.", "Siempre retorna el objeto collection entero.", - "Nota
No olvides usar notación corchete cuando accedes a propiedades de objetos con variables." + "Nota
No olvides usar notación corchete cuando accedes a propiedades de objetos con variables." ] } },