Changes Finders Keepers MDN link from array.some() to array.filter()

This commit is contained in:
Michael Krebs
2015-10-21 17:15:25 -04:00
parent 6adbdc74ca
commit 6dfda01661

View File

@ -633,7 +633,7 @@
"assert.strictEqual(find([1, 3, 5, 9], function(num) { return num % 2 === 0; }), undefined, 'message: <code>find([1, 3, 5, 9], function(num) { return num % 2 === 0; })</code> should return undefined.');" "assert.strictEqual(find([1, 3, 5, 9], function(num) { return num % 2 === 0; }), undefined, 'message: <code>find([1, 3, 5, 9], function(num) { return num % 2 === 0; })</code> should return undefined.');"
], ],
"MDNlinks": [ "MDNlinks": [
"Array.some()" "Array.filter()"
], ],
"type": "bonfire", "type": "bonfire",
"challengeType": 5, "challengeType": 5,