JavaScript Function to Checks String is Palindrome or Not?
Write a JavaScript function, to check string is palindrome or not. <html> <head> <title> Palindrome </title> <script type=”text/javascript”> function checkInput(){ var str = document.form1.palindrome.value; palindrome(str); […]