// Q. Write a function that checks if a given string (case insensitive) is a palindrome.
function isPalindrome(x) {
x = x.toLowerCase();
for(let i = 0, j = x.length - 1; i < x.length; ++i, --j){
if(x[i] != x[j]){
return false
}
}
return true;
}