Returns whether this number is a multiple of factor.
factor
bool isMultipleOf(num factor) => this / factor % 1 == 0;