write a function ispalindrome(sentence) that returns true if the characters of the sentence string form a palindrome, false otherwise. a palindrome is a word or phrase that is that is the same forwards and backwards. examples: ispalindrome('rats live on no evil star'); //



Answer :

Other Questions