Skip to content

Commit

Permalink
fix boo(NaN) return true to false
Browse files Browse the repository at this point in the history
  • Loading branch information
natac13 committed Oct 11, 2015
1 parent 043dd5a commit b3d2a18
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 b3d2a18

Please sign in to comment.