Is there like a quick way to get Javascript Map values as an array?
const map:Map<number, string> = new Map()
map.set(1, '1')
map.set(2, '2')
And then something like Array.from(map.values()) would give ['1','2'] ... I could have sworn that I've something like this...?
[...yourMap.values()]Array.from(map.values())map.values()is an iterator.[...someIterator]is an array.