The Fauna service will be ending on May 30, 2025.

For more information on the service wind down, see our announcement and the Fauna Service End-of-Life FAQ.

Math.radians()

Convert the value of a Number in degrees to radians.

Signature

Math.radians(x: Number) => Number

Description

Gets the value of a Number in degrees, in radians.

Parameters

Parameter Type Required Description

x

Number

true

Number of degrees.

Return value

Type Description

Number

Value of the provided degrees converted to radians.

Examples

fqlCopied!
Math.radians(1)
0.017453292519943295
\