diff --git a/files/ja/web/javascript/reference/global_objects/math/log10e/index.md b/files/ja/web/javascript/reference/global_objects/math/log10e/index.md index 73b8a32305d5ed..01f2babcc9a620 100644 --- a/files/ja/web/javascript/reference/global_objects/math/log10e/index.md +++ b/files/ja/web/javascript/reference/global_objects/math/log10e/index.md @@ -1,19 +1,25 @@ --- title: Math.LOG10E slug: Web/JavaScript/Reference/Global_Objects/Math/LOG10E +l10n: + sourceCommit: fcd80ee4c8477b6f73553bfada841781cf74cf46 --- {{JSRef}} -**`Math.LOG10E`** プロパティは 10 を底とした e の対数、約 0.434 を表します。 +**`Math.LOG10E`** は静的データプロパティで、 10 を底とした [e](/ja/docs/Web/JavaScript/Reference/Global_Objects/Math/E) の対数、約 0.434 を表します。 -Math.LOG10E=log10(e)0.434\mathtt{\mi{Math.LOG10E}} = \log_10(e) \approx 0.434 +{{EmbedInteractiveExample("pages/js/math-log10e.html", "shorter")}} -{{EmbedInteractiveExample("pages/js/math-log10e.html", "shorter")}}{{js_property_attributes(0, 0, 0)}} +## 値 + +𝙼𝚊𝚝𝚑.𝙻𝙾𝙶𝟷𝟶𝙴=log10(e)0.434\mathtt{\mi{Math.LOG10E}} = \log\_{10}(\mathrm{e}) \approx 0.434 + +{{js_property_attributes(0, 0, 0)}} ## 解説 -`LOG10E` は `Math` オブジェクトの静的プロパティなので、 `Math` オブジェクトを生成してプロパティとして使用するのではなく、常に `Math.LOG10E` として使用するようにしてください (`Math` はコンストラクターではありません)。 +`LOG10E` は `Math` オブジェクトの静的プロパティなので、自分で作成した `Math` オブジェクトのプロパティとして使用するのではなく、常に `Math.LOG10E` として使用するようにしてください(`Math` はコンストラクターではありません)。 ## 例 @@ -35,7 +41,7 @@ getLog10e(); // 0.4342944819032518 ## ブラウザーの互換性 -{{Compat("javascript.builtins.Math.LOG10E")}} +{{Compat}} ## 関連情報