we cannot give you answers on the forum.
especially for certification projects.
I would suggest sitting down and thinking about how to best approach the problem.
Write down the steps on how to approach it, then slowly implement it into code.
A palindrome is a word that is spelled the same forward and backward.
For example, eye is a palindrome
for this challenge, you need to do two things
No.1:
Remove all non-alphanumeric characters (punctuation, spaces and symbols)
You will need to google how to remove non alpha characters from a string using javascript
No.2:
reverse the string and then check if the original string is the same as the reversed string
You will need to google how to reverse a string
I would suggest trying those things and writing some code.
Then if you need additional help, come back to the forum and reply back with the code you have tried and we can help you from there