A for...of loop processes a string containing one supplementary Unicode code point encoded as a surrogate pair. How many loop values represent that code point?
Explanation
String iteration combines the surrogate pair into one Unicode code point, so one loop value represents it. Counting two would copy the code-unit behavior of length or bracket positions into a code-point iterator.