From 7e9c5e088236e9c309bd536b405f5a3c3181da71 Mon Sep 17 00:00:00 2001 From: ahstro Date: Tue, 15 Sep 2015 18:46:51 +0200 Subject: [PATCH] Add more falsy values to 'Falsy Bouncer', again. This was already fixed at some point by abhisekp, but their changes seems to have been overwritten somewhere along the line. --- seed/challenges/basic-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/basic-bonfires.json b/seed/challenges/basic-bonfires.json index c4206aeced3..572d0bae500 100644 --- a/seed/challenges/basic-bonfires.json +++ b/seed/challenges/basic-bonfires.json @@ -549,7 +549,7 @@ "tests": [ "assert.deepEqual(bouncer([7, \"ate\", \"\", false, 9]), [7, \"ate\", 9], '[7, \"ate\", \"\", false, 9] should return [7, \"ate\", 9].');", "assert.deepEqual(bouncer([\"a\", \"b\", \"c\"]), [\"a\", \"b\", \"c\"], '[\"a\", \"b\", \"c\"] should return [\"a\", \"b\", \"c\"].');", - "assert.deepEqual(bouncer([false, null, 0]), [], '[false, null, 0] should return [].');" + "assert.deepEqual(bouncer([false, null, 0, NaN, undefined, '']), [], '[false, null, 0] should return [].');" ], "MDNlinks": [ "Boolean Objects",