Comment trouver le logarithme : 1. Utilisez l'attribut LN2 et la syntaxe "Math.LN2" pour renvoyer le logarithme népérien de 2 ; 2. Utilisez l'attribut LN10 et la syntaxe "Math.LN10" ; 3. Utilisez le LOG2E ; attribut et la syntaxe " Math.LOG2E" 4. Utilisez la méthode log() et la syntaxe " Math.log(x)".
L'environnement d'exploitation de ce tutoriel : système Windows 7, JavaScript version 1.8.5, ordinateur Dell G3.
Comment trouver le logarithme en JavaScript :
1. Utilisez l'attribut LN2 de l'objet Math
L'attribut LN2 est , qui peut renvoyer le logarithme népérien de 2 (environ égal à 0,693), et sa valeur est d'environ 0,69314718055994528623.
Syntaxe : Math.LN2
Math.LN2
2、利用Math对象的LN10属性
LN10 属性就是 ,可返回 10 的自然对数(约等于2.302),其值近似于 2.3025850929940459011。
语法:Math.LN10
3、利用Math对象的LOG2E属性
LOG2E 属性就是 log2e,可返回以 2 为底的 e 的对数(约等于 1.4426950408889634)
语法:Math.LOG2E
4、利用Math对象的LOG10E 属性
LOG10E 属性就是,可返回以 10 为底的 e 的对数(约等于0.434)。
语法:Math.LOG10E
5、利用Math对象的log()方法
log() 方法可返回一个数的自然对数(基于E)。
语法:Math.log(x)
2. Utilisez l'attribut LN10 de l'objet Math
Math.LN10
3. Utilisez l'attribut LOG2E de l'objet Math
Syntaxe : Math.LOG2E
4. Utilisez l'attribut LOG10E de l'objet Math
L'attribut LOG10E est , peut renvoyer le logarithme base 10 de e (environ égal à 0,434). Syntaxe : Math.LOG10E
Math.log(x)
🎜🎜x : obligatoire. N’importe quel nombre ou expression. 🎜🎜🎜🎜Si x est un nombre négatif, renvoie NaN. 🎜🎜🎜🎜Si x est 0, renvoie -Infinity . 🎜🎜🎜🎜Exemple : 🎜🎜Math.log(2);
0.6931471805599453
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!