Whatever message this page gives is out now! Go check it out!
Log10(number)Parameter | Description |
number | Positive real number for which to calculate the logarithm |
<cfscript>
val=5
writeOutput("The log base 10 of " & val & " is: " & log10(val))
</cfscript>