A palindromic number reads the same both ways (left-to-right and
right-to-left).
The largest palindrome made from the product of two 2-digit
numbers is 9,009 = 91 × 99.
The largest palindrome made from the product of two 3-digit
numbers is 906,609 = 913 × 993.
The largest palindrome made from the product of two 4-digit numbers
is 99,000,099 = 9,901 × 9,999.
1. Write a function IN JAVASCRIPT to find the largest
palindrome made from the product of two 7-digit...