I am trying to add 1 to a large number and return a non scientific notation value:
(parseInt("1000198078902400000000000000") + 1).toLocaleString('fullwide', { useGrouping: false })
However, this returns the same 1000198078902400000000000000 value instead of 1000198078902400000000000001 and I cannot figure out why