Echo JS 0.11.0

<~>
tracker1 1109 days ago. link 1 point
If you *REALLY* don't like ternary operators...

    function ite(condition, thenValue, elseValue) {
      if (condition) return thenValue;
      return elseValue;
    }

Replies