Course · Section 12: Numbers, Dates, Intl and Timers · Lecture 185: Working with BigInt
Implement `bigSum(a, b)` where `a` and `b` are numeric strings, returning their sum as a string using BigInt (to avoid precision loss on huge numbers).
+ 1 hidden test run on Submit.
BigInt arithmetic stays exact for very large integers; converting to a string returns a comparable value.
Run your code to see results.