▲ Convert a Set to an Array in JavaScript - Mastering JS at masteringjs.io▼1 up and 0 down, posted by vkarpov15 668 days ago 1 comment
MaxArt 667 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());