I tried running the following code in Google Apps Script:
Logger.log (12345*12345)
and this was the result:
1.52399025E8
when it should be
152,399,025
Trying Logger.log (BigInt(12345*12345))
works, but why would I have to use it?
(It makes my whole project much more complicated).