Echo JS 0.11.0

<~>

MaxArt 449 days ago. link 1 point
A note to add: Array.from supports a secondary mapping function argument. Which means that instead of

Array.from(set).map(c => c.toUpperCase());

you can do

Array.from(set, c => c.toUpperCase());