-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
22 lines (22 loc) · 836 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const inputField = document.getElementById('text-input');
const checkButton = document.getElementById('check-btn');
const resultDiv = document.getElementById('result');
checkButton.addEventListener('click', function() {
const userInput = inputField.value;
//Check if input is empty
if(userInput==""){
alert("Input value");
}else{
// Perform some action with the value (e.g., check if it's a palindrome)
if (isPalindrome(userInput)) {
resultDiv.innerHTML = `<strong>${userInput}</strong> is a palindrome!`;
} else {
resultDiv.innerHTML = `<strong>${userInput}</strong> is not a palindrome.`;
}
}
function isPalindrome(str){
const cleanedStr = str.replace(/[^A-Za-z0-9]/g, '').toLowerCase();
const reversedStr = cleanedStr.split('').reverse().join('');
return cleanedStr === reversedStr;
}}
);