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."
]
}
},