Cómo calcular el número con operadores aritméticos en JavaScript

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