function palindromeNumber(num) { let numStr = num.toString(); return numStr === numStr.toString().split("").reverse().join(""); }