TS1109

error TS1109: Expression expected.

Broken Code ❌

1
const lastName = throw new Error('Missing last name');

Fixed Code ✔️

Any snippet of code that evaluates to a value is an expression. Any snippet of code that performs an action is a statement. We need a statement to throw an error inside:

1
2
3
4
const lastName = undefined;
if (!lastName) {
throw new Error('Missing last name');
}