Result.unwrapOr returns the value contained in an Ok and returns the provided default if the result is Err.
Result.unwrapOr
Ok
Err
Result<T, E>.unwrapOr = (optb: T) => T;
div(1, 0).unwrapOr(0); // => 0