Update basic-bonfires.json

Changes the current MDNlink to my suggested link on the issue https://github.com/FreeCodeCamp/FreeCodeCamp/issues/4459.

This PR closes https://github.com/FreeCodeCamp/FreeCodeCamp/issues/4459.

PS: I checked to make sure my suggested link is in the module bonfireMDNlinks.
pull/18182/head
Victorino Machava 2015-11-15 22:55:17 +02:00
parent 17798f05cd
commit 6a947a75d7
1 changed files with 1 additions and 1 deletions

View File

@ -547,7 +547,7 @@
"assert(mutation([\"hello\", \"neo\"]) === false, 'message: <code>mutation([\"hello\", \"neo\"])</code> should return false.');"
],
"MDNlinks": [
"Array.indexOf()"
"String.indexOf()"
],
"solutions": [
"function mutation(arr) {\n var hash = Object.create(null);\n arr[0].toLowerCase().split('').forEach(function(c) {\n hash[c] = true;\n });\n return !arr[1].toLowerCase().split('').filter(function(c) {\n return !hash[c];\n }).length;\n}\n\nmutation(['hello', 'hey']);\n"