== Why is this an issue? include::../description.adoc[] === Noncompliant code example [source,javascript] ---- function doSomething() { for (let i = 0; i < 4; i++) { // Noncompliant, 4 is a magic number // ... } } ---- === Compliant solution [source,javascript] ---- function doSomething() { const numberOfCycles = 4; for (let i = 0; i < numberOfCycles; i++) { // ... } } ---- ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) include::../message.adoc[] ''' == Comments And Links (visible only on this page) include::../comments-and-links.adoc[] endif::env-github,rspecator-view[]