Interface Numeric

Administrivia: anything with a valueOf(): number method is comparable, so we allow it in numeric operations

interface Numeric {
    valueOf(): number;
}

Methods

Methods

  • Returns number