When dealing with a specific set of "Strings" that represent integers in an addition operation, how can one determine if the calculation is feasible in javascript? For example:
2 + 2
(certainly possible)
20000000000000000 - 1
(impossible)
2e50 + 2e60
(impossible)
200000 + 5 + 40 + 300 + 2000 + 10000
(possible)
The same principle applies to multiplication, whether it's achievable or not?
2*2
(possible)
3*2e200
(possible)
4*-3e700
(not possible)