Skip to content

Commit

Permalink
Merge pull request freeCodeCamp#3710 from natac13/fix/bool-Nan-false-…
Browse files Browse the repository at this point in the history
…#3701

fix boo(NaN) return true to false
  • Loading branch information
bugron committed Oct 11, 2015
2 parents 043dd5a + b3d2a18 commit f6541f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion seed/challenges/intermediate-bonfires.json
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@
"assert.strictEqual(boo([].slice), false, 'message: <code>boo([].slice)</code> should return false.');",
"assert.strictEqual(boo({ \"a\": 1 }), false, 'message: <code>boo({ \"a\": 1 })</code> should return false.');",
"assert.strictEqual(boo(1), false, 'message: <code>boo(1)</code> should return false.');",
"assert.strictEqual(boo(NaN), false, 'message: <code>boo(NaN)</code> should return true.');",
"assert.strictEqual(boo(NaN), false, 'message: <code>boo(NaN)</code> should return false.');",
"assert.strictEqual(boo(\"a\"), false, 'message: <code>boo(\"a\")</code> should return false.');"
],
"MDNlinks": [
Expand Down

0 comments on commit f6541f3

Please sign in to comment.