Node.js examples for Math:Log
Math log by base
function log ( base, x ) { return Math.log( x ) / Math.log( base ); }