Appearance
Checks whether the throw keyword is missing in front of a new expression.
throw
new
function foo() { throw Error(); } const foo = () => { new Error(); };