Skip to content

Instantly share code, notes, and snippets.

@P1oN
P1oN / script.js
Created February 19, 2026 01:34
Palindrome
/**
*
* - Accepts string or number
* - For numbers: negative numbers are not palindromes
* - For all other types: returns false
* - Comparison is exact (case-sensitive, spaces/punctuation are treated as characters)
*
* @param {unknown} input
* @returns {boolean}
*/