欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在JavaScript中使用对数Math.log()方法的教程

程序员文章站 2023-11-27 21:14:34
 这个方法返回一个数的自然对数(底数是e)。如果数的值是负的,则返回值始终为nan。 语法 math.log( x ) ; 下面是参数的...

 这个方法返回一个数的自然对数(底数是e)。如果数的值是负的,则返回值始终为nan。
语法

math.log( x ) ;

下面是参数的详细信息:

  •     x : 一个数字.

返回值:

  • 返回一个数字的自然对数(底数为e)。

例子:

<html>
<head>
<title>javascript math log() method</title>
</head>
<body>
<script type="text/javascript">

var value = math.log(10);
document.write("first test value : " + value ); 
 
var value = math.log(0);
document.write("<br />second test value : " + value ); 

var value = math.log(-1);
document.write("<br />third test value : " + value ); 

var value = math.log(100);
document.write("<br />fourth test value : " + value ); 
</script>
</body>
</html>

这将产生以下结果:

first test value : 2.302585092994046
second test value : -infinity
third test value : nan
fourth test value : 4.605170185988092