for manipulating Number and numeric values.
In some cases, Math class is indispensable. A benchmark shows that Math:Add(myVar,1,myVar) is faster than myVar++;, myVar+=1; and myVar=myVar+1;.
Math:Add(myVar,1,myVar)
myVar++;
myVar+=1;
myVar=myVar+1;