18 lines
295 B
Plaintext
18 lines
295 B
Plaintext
Creating a new <code>Error</code> without actually throwing it is useless and is probably due to a mistake.
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
if (x < 0) {
|
|
new Error("x must be nonnegative");
|
|
}
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
if (x < 0) {
|
|
throw new Error("x must be nonnegative");
|
|
}
|
|
----
|