Echo JS 0.11.0

<~>
tracker1 1464 days ago. link 1 point
Should add a note that for..of over strings will give you surrogate pairs and is the most reliable means of doing so for Unicode sets.

    // will only print one line for the pair.
    for (const c of '\uD83D\uDE00') {
      console.log('-', c); 
    }

Replies