javascript-algorithms icon indicating copy to clipboard operation
javascript-algorithms copied to clipboard

Added Palindrome Program

Open Syed0206 opened this issue 3 months ago • 1 comments

Implemented Palindrome Number Checker in JavaScript

  • Added a program to check if a number is a palindrome.

  • A palindrome number reads the same backward as forward (e.g., 121 is a palindrome, 123 is not).

The program:

  • Takes user input via prompt() in the browser.

  • Uses a loop to reverse the number and compares it to the original.

Syed0206 avatar Oct 01 '25 17:10 Syed0206

@mgechev can you please review my PR and merge it

Syed0206 avatar Oct 02 '25 18:10 Syed0206