Miêu tả

Phương thức Math log trong JavaScript trả về Logarit cơ số e của một số. Nếu giá trị số là âm, giá trị trả về luôn luôn là NaN.

Cú pháp

Cú pháp của nó như sau:

Math.log( x ) ;

Chi tiết về tham số

x − Là một số.

Trả về giá trị

Trả về Logarit cơ số e của một số

Ví dụ

Bạn thử ví dụ sau:

<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>

Kết quả

First Test Value : 2.302585092994046
Second Test Value : -Infinity
Third Test Value : NaN
Fourth Test Value : 4.605170185988092 

Các bài học JavaScript khác tại s2sontech:




Bình luận (0)

Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Learning English Everyday