function mutation(arr) { return arr[1].toLowerCase().split("").every(function(val, index, array){ return arr[0].toLowerCase().indexOf(val)>-1; }); }