Simple types / Numbers / Mathematical operations
Exponentiation
Square root
min and max values
Logarithm
Decimal logarithm
Sine, cosine and tangent
let
number =
1000
;
let
result = Math.
log10
(number);
//result is 3
console.
log
(
`result is
${result}
`
);