IDE extension that lets you fix coding issues before they exist!
Setup is effortless and analysis is automatic for most languages
Fast, accurate analysis; enterprise scalability
Creating a new Error without actually throwing it is useless and is probably due to a mistake.
Error
if (x < 0) { new Error("x must be nonnegative"); }
if (x < 0) { throw new Error("x must be nonnegative"); }