2022-10-27 15:07:13 +00:00
|
|
|
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)
|