.atan()
Description
Parameters
Usage On Numbers
log (0.5).atan()
// returns 0.4636476090008061
// (0.4636476090008061).tan() === 0.5Last updated
# .atan()
atan() is a method that returns the arctangent (inverse tangent) of a number — that is, the angle whose tangent is the number.
atan() takes no parameters.
log (0.5).atan()
// returns 0.4636476090008061
// (0.4636476090008061).tan() === 0.5Last updated