cara menghitung angka dengan operator aritmatika dalam javascript

let lotsOfDecimal = 3.6184272858760706e+87;
lotsOfDecimal;
let twoDecimalPlaces = lotsOfDecimal.toFixed(2);
twoDecimalPlaces;
Inquisitive Iguana