Using javascript function
function squareIt(number) { return number * number; }
When specifying number 4294967296, the return function 18446744073709552000 is returned
Everyone knows that the real answer is: 18446744073709551616 :-)
I assume this is due to rounding on my 32 bit machine. However, this script will give the correct answer on a 64-bit machine? Has anyone tried this?
source share