Created
December 7, 2015 23:08
-
-
Save anonymous/a084c151516af2ed226d to your computer and use it in GitHub Desktop.
http://www.freecodecamp.com/robertsheacole 's solution for Bonfire: Mutations
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Bonfire: Mutations | |
// Author: @robertsheacole | |
// Challenge: http://www.freecodecamp.com/challenges/bonfire-mutations# | |
// Learn to Code at Free Code Camp (www.freecodecamp.com) | |
function mutation(arr) { | |
var first = arr[0].toLowerCase().split(''); | |
var query = arr[1].toLowerCase().split(''); | |
for (var i = 0; i < query.length; i++){ | |
var value = first.indexOf(query[i]); | |
if (value === -1) { | |
return false; | |
} | |
} | |
return true; | |
} | |
mutation(["hello", "hey"]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment