I want to get an angle in degrees of a triangle, in JS.
How can I get out the degrees of the angle with Tangent after calculating opposite / adjacent?
degrees = Math.atan(a/b) * 180 / Math.PI;
Be certain to validate b... bad things may happen if it is 0.