UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

53 lines (43 loc) 1.55 kB
--- layout: page title: "JavaScript atan2 function" comments: true sharing: true footer: true alias: - /functions/view/atan2:768 - /functions/view/atan2 - /functions/view/768 - /functions/atan2:768 - /functions/768 --- <!-- Generated by Rakefile:build --> A JavaScript equivalent of PHP's atan2 {% codeblock math/atan2.js lang:js https://raw.github.com/kvz/phpjs/master/functions/math/atan2.js raw on github %} function atan2 (y, x) { // From: http://phpjs.org/functions // + original by: Brett Zamir (http://brett-zamir.me) // * example 1: atan2(1, 1); // * returns 1: 0.7853981633974483 return Math.atan2(y, x); } {% endcodeblock %} - [Raw function on GitHub](https://github.com/kvz/phpjs/blob/master/functions/math/atan2.js) Please note that php.js uses JavaScript objects as substitutes for PHP arrays, they are the closest match to this hashtable-like data structure. Please also note that php.js offers community built functions and goes by the [McDonald's Theory](https://medium.com/what-i-learned-building/9216e1c9da7d). We'll put online functions that are far from perfect, in the hopes to spark better contributions. Do you have one? Then please just: - [Edit on GitHub](https://github.com/kvz/phpjs/edit/master/functions/math/atan2.js) ### Example 1 This code {% codeblock lang:js example %} atan2(1, 1); {% endcodeblock %} Should return {% codeblock lang:js returns %} 0.7853981633974483 {% endcodeblock %} ### Other PHP functions in the math extension {% render_partial _includes/custom/math.html %}