JavaScript Algorithms and Data Structures Projects - Palindrome Checker

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

function palindrome(str) {
  return true;
}

palindrome("eye");
palindrome("not a palindrome");

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36

Challenge: JavaScript Algorithms and Data Structures Projects - Palindrome Checker

Link to the challenge:

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help

can you please write the code for it?

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