langage naturel | en math. | en "Javascript" | ||
La virgule décimale devient un point décimal | 3,141592 | 3.141592 | ← IMPORTANT | |
La puissance 10n s'écrit En | 3,2 × 105 | 3.2E5 | (ou 3.2e5) | |
fonction racine carrée de x (SQuare RooT) | √ x | sqrt(x) | pow(x,0.5) | (ou x**0.5) |
fonction puissance : x puissance 3 (POWer) | x3 | pow(x,3) | (ou x**3) | |
LOGarithme néperien | ln(x) | log(x) | ||
EXPonentielle à base e (ou e à la puissance x) | ex | exp(x) | pow(E,x) | (ou E**x) |
constantes | PI, E, LN10, LN2, LOG10E, LOG2E, SQRT1_2, SQRT2, 105=1.e5 |
Fonctions arithmétiques | +, −, *, /, %(modulo) |
Fonctions trigo. | cos(x), sin(x), tan(x), acos(x), asin(x), atan(x), atan2(y,x) (angles en radian) |
Fonctions maths | sqrt(x), xy=pow(x,y), log(x), exp(x), log10(x) |
Fonctions diverses | abs(x), random(), ceil(x), floor(x), min(x,y), max(x,y), round(x) |
référence | Javascript objet Math |