I\'m trying to compare two strings to see if they are anagrams.
My problem is that I\'m only comparing the first letter in each string. For example, \"Mary\" and \"
//The best code so far that checks, white space, non alphabets //characters //without sorting function anagram(stringOne,stringTwo){ var newStringOne = "" var newStringTwo = '' for(var i=0; i