日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

JavaScript中带有示例的Math.log10()方法

發(fā)布時間:2023/12/1 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 JavaScript中带有示例的Math.log10()方法 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

JavaScript | Math.log10()方法 (JavaScript | Math.log10() Method)

Math operations in JavaScript are handled using functions of math library in JavaScript. In this tutorial on Math.log10() method, we will learn about the log10() method and its working with examples.

JavaScript中的數(shù)學運算是使用JavaScript中的數(shù)學庫函數(shù)處理的。 在有關(guān)Math.log10()方法的本教程中,我們將學習log10()方法及其示例。

Math.log10() is a function in math library of JavaScript that is used to support math's operation of finding logarithm with base 10 of a number.

Math.log10()是JavaScript數(shù)學庫中的一個函數(shù),用于支持數(shù)學以10為底的對數(shù)查找運算。

Syntax:

句法:

Math.log10(n);

Parameter(s):

參數(shù):

  • n – It takes only one value which is the number whose logarithm 10 (log10) is to be found.

    n –僅采用一個值,該值是要找到其對數(shù)10(log 10 )的數(shù)字。

Return value:

返回值:

The return type of this method is number, it returns the log10 of the given number.

此方法的返回類型為number ,它返回給定數(shù)字的log 10

Example 1: Finding the log10 of number

示例1:查找數(shù)字的對數(shù)10

<!DOCTYPE html><html><head><title>Page Title</title> </head><body><script>document.write(Math.log10(3) + "<br>");document.write(Math.log10(87) + "<br>");document.write(Math.log10(100) + "<br>");document.write(Math.log10(512));</script> </body></html>

Output

輸出量

Example 2: finding log of a string.

示例2:查找字符串的日志。

<!DOCTYPE html><html><head><title>Page Title</title> </head><body><script>document.write(Math.log10("Include help"));</script></body></html>

Output

輸出量

When a string is passed to the log10() method. It returns NaN denoting the passed value is not a number.

將字符串傳遞給log 10 ()方法時 。 它返回NaN表示傳遞的值不是數(shù)字。

Example 3: Find the log of a complex number.

示例3:查找復(fù)數(shù)的日志。

<!DOCTYPE html> <html><head><title>Page Title</title> </head><body><script>document.write(Math.log10(1 + 2 i));</script></body></html>

Output

輸出量

Invalid or unexpected token

翻譯自: https://www.includehelp.com/code-snippets/math-log10-method-with-example-in-javascript.aspx

總結(jié)

以上是生活随笔為你收集整理的JavaScript中带有示例的Math.log10()方法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。