47 lines
784 B
Plaintext
Raw Permalink Normal View History

== Why is this an issue?
If you have an iterable, such as an array, set, or list, your best option for looping through its values is the ``++for of++`` syntax. Use ``++for in++`` and you'll iterate the properties, rather than the values.
=== Noncompliant code example
2022-02-04 17:28:24 +01:00
[source,javascript]
----
const arr = [4, 3, 2, 1];
for (let value in arr) { // Noncompliant
console.log(value); // logs 0, 1, 2, 3
}
----
=== Compliant solution
2022-02-04 17:28:24 +01:00
[source,javascript]
----
const arr = [4, 3, 2, 1];
for (let value of arr) {
console.log(value);
}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Use "for...of" to iterate over this "xxx".
=== Highlighting
``++for (...)++``
endif::env-github,rspecator-view[]