Math

// HOW TO USE MATH LIBRARY
Math.function(inputs...);
Math.random();
// MATH FUNCTIONS
Math.abs(input);         // absolute value
Math.round(input);       // round
Math.ceil(double);       // round up
Math.floor(double);      // round down
Math.random(double);     // generates random double in range (0,1)
Math.pow(2, 1.5);        // power function: 2^(1.5)
Math.sqrt(double);       // square root (wurzel)
Math.exp(5);             // exponential function e^5