a closer look at [arrays]
create array from array like object
f. e. Map, Set, String, arguments
Array.from(arrayLikeObject)
create array from variable number of arguments
Array.of(1, 2, "boo", {})
xxxx
By Marc Dix