InterviewSolution
Saved Bookmarks
| 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 = 210document.write("Log Result of num2 is : " & Log(num2))& "<br/>" '5.34710753071747
|
|