31 lines
428 B
Plaintext
Raw Normal View History

2020-06-30 12:48:07 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
function pickNumber() {
let i = 0;
i = i++; // Noncompliant; i is still zero
return i++; // Noncompliant; 0 returned
}
----
== Compliant Solution
----
function pickNumber() {
let i = 0;
i++;
return ++i;
}
----
ifdef::rspecator-view[]
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::rspecator-view[]