Node.js examples for Math:Exp
Math exp by base
function exp ( base, exponent ) { return Math.pow( base, exponent ); }