From b19721b61825c24e6c0b0107fefe17ff906c3c6d Mon Sep 17 00:00:00 2001 From: Cody Deckard Date: Wed, 25 Jan 2017 18:43:58 -0800 Subject: [PATCH] Add hint to Falsy Bouncer challenge description Updates the Falsy Bouncer challenge description to include a hint to help campers understand how they should approach the challenge without revealing too much information or locking the camper into a particular solution. --- .../basic-algorithm-scripting.json | 1 + 1 file changed, 1 insertion(+) diff --git a/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json b/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json index 1751f732e1..5ed6f0b580 100644 --- a/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json +++ b/challenges/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting.json @@ -685,6 +685,7 @@ "description": [ "Remove all falsy values from an array.", "Falsy values in JavaScript are false, null, 0, \"\", undefined, and NaN.", + "Hint: Try converting each value to a Boolean.", "Remember to use Read-Search-Ask if you get stuck. Write your own code." ], "challengeSeed": [