I have an additional example of where I think this feature would be useful: In conjunction with the nullish coalescing operator. For example: ```JavaScript const car = cars[carType] ?? throw "Car type mayn't be null"; ``` Would this be worth adding to the list of examples? :)