📄️ abs
Get the absolute value of a number.
📄️ acos
Computes the arc cosine.
📄️ acosh
Computes the inverse hyperbolic cosine.
📄️ asin
Computes the arc sine.
📄️ asinh
Computes the inverse hyperbolic sine.
📄️ atan
Computes the arc tangent.
📄️ atan2
Computes the arc tangent of y/x, considering quadrants.
📄️ atanh
Computes the inverse hyperbolic tangent.
📄️ ceil
Rounds up to the nearest integer.
📄️ cos
Computes the cosine.
📄️ cosh
Computes the hyperbolic cosine.
📄️ exp
Computes the exponential function 𝑒 to the power of x
📄️ floor
Rounds down to the nearest integer.
📄️ fmod
Computes the remainder of division.
📄️ hypot
Computes the square root of the sum of the squares of x and y.
📄️ log
Computes the natural logarithm (base e).
📄️ log10
Computes the base-10 logarithm.
📄️ max
Returns the maximum of given numbers.
📄️ min
Returns the minimum of given numbers.
📄️ pow
Computes exponentiation (x raised to y).
📄️ random
Returns a random number in-between min...max including min and excluding max.
📄️ round
Rounds to the nearest integer.
📄️ sign
Determine whether a value is negative or positive.
📄️ sin
Computes the sine.
📄️ sinh
Computes the hyperbolic sine.
📄️ sqrt
Computes the square root of a number.
📄️ tan
Computes the tangent.
📄️ tanh
Computes the hyperbolic tangent.
📄️ trunc
Truncates decimal places, returning the integer part.