Skip to content

Instantly share code, notes, and snippets.

@dobakay
Last active March 14, 2016 15:02
Show Gist options
  • Save dobakay/5a1ea0f1d43c0a53cfef to your computer and use it in GitHub Desktop.
Save dobakay/5a1ea0f1d43c0a53cfef to your computer and use it in GitHub Desktop.
function stringsAreAnagrams(str1, str2) {
if(str1.length !== str2.length) {
return false;
}
for (var i = 0; i < str1.length; i++) {
if(str2.indexOf(str1[i]) === -1 ) {
return false;
}
};
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment