diff --git a/palindromes.txt b/palindromes.txt new file mode 100644 index 0000000..7ad7a74 --- /dev/null +++ b/palindromes.txt @@ -0,0 +1,25 @@ +// program to check if the string is palindrome or not + +function checkPalindrome(str) { + + // find the length of a string + const len = string.length; + + // loop through half of the string + for (let i = 0; i < len / 2; i++) { + + // check if first and last string are same + if (string[i] !== string[len - 1 - i]) { + return 'It is not a palindrome'; + } + } + return 'It is a palindrome'; +} + +// take input +const string = prompt('Enter a string: '); + +// call the function +const value = checkPalindrome(string); + +console.log(value); \ No newline at end of file