1.

How Will You Get The Natural Logarithm Of The Given Number In Vbscript?

Answer»

Using Log function, which returns the natural LOGARITHM of the given number.

Example:

DIM num : num = 210<BR>document.write("Log Result of NUM2 is : " & Log(num2))& "<br/>" '5.34710753071747

Using Log function, which returns the natural logarithm of the given number.

Example:

Dim num : num = 210
document.write("Log Result of num2 is : " & Log(num2))& "<br/>" '5.34710753071747



Discussion

No Comment Found