UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

8 lines (7 loc) 201 B
function sqrt(arg) { // From: http://phpjs.org/functions // + original by: Onno Marsman // * example 1: sqrt(8723321.4); // * returns 1: 2953.5269424875746 return Math.sqrt(arg); }