UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

8 lines (7 loc) 192 B
function exp(arg) { // discuss at: http://phpjs.org/functions/exp/ // original by: Onno Marsman // example 1: exp(0.3); // returns 1: 1.3498588075760032 return Math.exp(arg); }