challenge-algorithms-v2.0/08-isAnagram/index.js

13 lines
500 B
JavaScript
Raw Permalink Normal View History

export function isAnagram(word1, word2) {
2022-11-02 15:29:59 +00:00
word1 = word1.toUpperCase().split("").sort().join("");
word2 = word2.toUpperCase().split("").sort().join("");
return word1 === word2;
}
console.log(isAnagram("roma", "amor")); //(true)
console.log(isAnagram("Buckethead", "DeathCubeK")); //(true)
console.log(isAnagram("Twoo", "WooT")); //(true)
console.log(isAnagram("dumble", "bumble")); //(false)
console.log(isAnagram("ound", "round")); //(false)
console.log(isAnagram("apple", "pale")); //(false)