Palindrome Checker

Developer
Size
1,846 Kb
Views
6,072

How do I make an palindrome checker?

What is a palindrome checker? How do you make a palindrome checker? This script and codes were developed by Thomas Weld on 09 January 2023, Monday.

Palindrome Checker Previews

Palindrome Checker - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Palindrome Checker</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="container"> <h1>Palindrome Checker with JavaScript</h1> <p>Enter your word below</p> <form id="myForm"> <input id="wordInput" type="text" /> <button>Submit</button> </form> <br /> <div id="answer"></div>
</div> <script src="js/index.js"></script>
</body>
</html>

Palindrome Checker - Script Codes CSS Codes

.container { padding: 40px;
}

Palindrome Checker - Script Codes JS Codes

var myForm = document.getElementById('myForm');
var wordInput = document.getElementById('wordInput');
var answer = document.getElementById('answer');
myForm.addEventListener('submit', function(e){ e.preventDefault(); var userInput = wordInput.value; answer.innerHTML = isPalindrome(userInput);
});
function isPalindrome(userInput){ for ( i = 0; i <= ( userInput.length / 2 ); i++ ) { if ( userInput[i] != userInput[(userInput.length - 1 - i)] ) { return false; } } return true;
}
Palindrome Checker - Script Codes
Palindrome Checker - Script Codes
Home Page Home
Developer Thomas Weld
Username thomasweld
Uploaded January 09, 2023
Rating 3
Size 1,846 Kb
Views 6,072
Do you need developer help for Palindrome Checker?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Thomas Weld (thomasweld) Script Codes
Create amazing sales emails with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!