Math
Numeric values: 0, 1, 2, …
0;
1;
2;
Arithmetic binary operation (+, -, *, /)
0+1;
0-1;
1*2;
3/4;
Exponent
4**2;
Absolute value
Math.abs(-5);
Minimum/maximum of two values
Math.min(0, 1);
Random value
Math.random(5);
0;
1;
2;
0+1;
0-1;
1*2;
3/4;
4**2;
Math.abs(-5);
Math.min(0, 1);
Math.random(5);