IsPalindrome

Size
1,447 Kb
Views
36,432

How do I make an ispalindrome?

What is a ispalindrome? How do you make a ispalindrome? This script and codes were developed by David Broadlick on 18 August 2022, Thursday.

IsPalindrome Previews

IsPalindrome - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>isPalindrome</title>
</head>
<body> <script src="js/index.js"></script>
</body>
</html>

IsPalindrome - Script Codes JS Codes

function isPalindrome (string) { for (var i = 0; i < Math.floor(string.length/2); i++) { console.log("string[i]: " + string[i] + " string[length-1-i]: " + string[string.length-1-i]); console.log(); if(string[i] != string[string.length-1-i]) { return false; } } return true;
}
IsPalindrome - Script Codes
IsPalindrome - Script Codes
Home Page Home
Developer David Broadlick
Username s1m0ne
Uploaded August 18, 2022
Rating 3
Size 1,447 Kb
Views 36,432
Do you need developer help for IsPalindrome?

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!

David Broadlick (s1m0ne) Script Codes
Create amazing love letters 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!