round(x);Round a number to the nearest integer
Arguments
xThe value to roundReturns
intThe rounded valuefloor(x);floor is a function that takes in a number, and returns the greatest integer less or equal to x
see here
Arguments
xThe value to floorReturns
intgreatest integer less than or equals to xceil(x);ceil is a function that takes in a number, and returns the smallest integer greater or equal to x
see here
Arguments
xThe value to floorReturns
intThe floored valuesin(x);Sine function (Trigonometry)
Arguments
xThe input valueReturns
numberThe output valuecos(x);Cosine function (Trigonometry)
Arguments
xThe input valueReturns
numberThe output valuetan(x);Tangent function (Trigonometry)
Arguments
xThe input valueReturns
numberThe output value