Math log by base - Node.js Math

Node.js examples for Math:Log

Description

Math log by base

Demo Code


function log ( base, x )
{
  return Math.log( x ) / Math.log( base );
}

Related Tutorials