So berechnen Sie die Zahl mit arithmetischen Operatoren in JavaScript

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