TypeProperty (R) Static | Global Math Object | Static
Format Math.LN2
Commentary
2 is the value of the natural logarithm.
Sample code - QC 2 JavaScript
outputs [0] = Math.LN2;
Sample code - QC 3 JavaScript
function (__number outputNumber) main (__number inputNumber[1])
{
var result = new Object();
result.outputNumber = Math.LN2;
return result;
}