26 lines
694 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
The assignment of default parameter values is generally intended to help the caller. But when a default assignment causes side effects, the caller may not be aware of the extra changes or may not fully understand their implications. I.e. default assignments with side effects may end up hurting the caller, and for that reason, they should be avoided.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
var count = 0;
function go(i = count++) { // Noncompliant
console.log(i);
}
go(); // outputs 0
go(7); // outputs 7
go(); // outputs 1
----
ifdef::env-github,rspecator-view[]
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]