-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
49 lines (35 loc) · 1.17 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
function cleanInputString(str) {
const regex = /[\p{P}\p{S}\s]/gu;
return str.replace(regex, '');
}
const textInput = document.getElementById("text-input");
const checkBtn = document.getElementById("check-btn");
const clearBtn = document.getElementById("clear-btn");
const result = document.getElementById("result");
const check = (text) => {
const auxArr = [];
const cleanText = cleanInputString(text).toLowerCase().split("");
cleanText.map((i) => {
auxArr.unshift(i);
});
const newText = auxArr.join("").toLowerCase();
if (cleanText.join("") === newText) {
return "is a palindrome"
}
return "is not a palindrome";
};
const clear = () => {
result.classList.add("hidden");
result.innerText = "";
textInput.value = "";
};
checkBtn.addEventListener("click", () => {
const text = textInput.value;
if (text === "") {
alert("Please input a value");
return;
}
result.innerText = `${text} ${check(text)}`;
result.classList.remove("hidden");
});
clearBtn.addEventListener("click", clear);