利用 JavaScript 语言特性。
12345
function isPalindrome(x) { return (x + '').split('').reverse().join('') == x;}isPalindrome(121);