I'm probably just missing something but didn't see this in the docs.
map.keys() gives you an iterator of keys.
map.keySeq() a lazy seq (Iterable) of keys.
map.values() iterator of values.
map.valueSeq() a seq of values.
These exist for all collections, not just Map. Full descriptions of each are in the type documentation.
Ah, valueSeq is what I wanted. I didn't really get what an iterator was so was confused why toJS wasn't working on it. Thanks!
Most helpful comment
map.keys() gives you an iterator of keys.
map.keySeq() a lazy seq (Iterable) of keys.
map.values() iterator of values.
map.valueSeq() a seq of values.
These exist for all collections, not just Map. Full descriptions of each are in the type documentation.