From ea6a563af6108f03022c92323816cf9ac7fe679a Mon Sep 17 00:00:00 2001 From: Rex Schrader Date: Wed, 6 Jan 2016 15:54:32 -0800 Subject: [PATCH] Record Collection Instruction Clarification --- .../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 81fc7cc565..6fd307b86a 100644 --- a/seed/challenges/01-front-end-development-certification/basic-javascript.json +++ b/seed/challenges/01-front-end-development-certification/basic-javascript.json @@ -3618,7 +3618,7 @@ "You are given a JSON object representing (a small part of) your record collection. Each album is identified by a unique id number and has several properties. Not all albums have complete information.", "Write a function which takes an id, a property (prop), and a value.", "For the given id in collection:", - "If value is non-blank (value !== \"\"), then update or set the value for the prop.", + "If value is non-blank (value !== \"\") and prop is not \"tracks\" then update or set the value for the prop.", "If the prop is \"tracks\" and value is non-blank, push the value onto the end of the tracks array.", "If value is blank, delete that prop.", "Always return the entire collection object."