String.prototype.toLowerCase()
and use String.prototype.replace()
to remove non-alphanumeric characters from it....
) to split the normalized string into individual characters.Array.prototype.reverse()
, String.prototype.join('')
and compare the result to the normalized string.const palindrome = str => {
const s = str.toLowerCase().replace(/[\W_]/g, '');
return s === [...s].reverse().join('');
};
palindrome('taco cat'); // true
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️