UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

8 lines (7 loc) 217 B
function pow(base, exp) { // From: http://phpjs.org/functions // + original by: Onno Marsman // * example 1: pow(8723321.4, 7); // * returns 1: 3.8439091680778995e+48 return Math.pow(base, exp); }