From b3d2a1839929a8e558812c72032d9be89b7851a4 Mon Sep 17 00:00:00 2001 From: natac13 Date: Sun, 11 Oct 2015 10:07:25 -0400 Subject: [PATCH] fix boo(NaN) return true to false closes #3701 --- seed/challenges/intermediate-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/intermediate-bonfires.json b/seed/challenges/intermediate-bonfires.json index ae17999083..810bf00cbf 100644 --- a/seed/challenges/intermediate-bonfires.json +++ b/seed/challenges/intermediate-bonfires.json @@ -356,7 +356,7 @@ "assert.strictEqual(boo([].slice), false, 'message: boo([].slice) should return false.');", "assert.strictEqual(boo({ \"a\": 1 }), false, 'message: boo({ \"a\": 1 }) should return false.');", "assert.strictEqual(boo(1), false, 'message: boo(1) should return false.');", - "assert.strictEqual(boo(NaN), false, 'message: boo(NaN) should return true.');", + "assert.strictEqual(boo(NaN), false, 'message: boo(NaN) should return false.');", "assert.strictEqual(boo(\"a\"), false, 'message: boo(\"a\") should return false.');" ], "MDNlinks": [