Unzips the list of tuple into the tuple of list.
The list of tuple.
The unzipped tuple.
const [aList, bList] = unzip( fromArray([ [2, 3], [5, 4], [11, 3], ]),);expect(toArray(aList)).toStrictEqual([2, 5, 11]);expect(toArray(bList)).toStrictEqual([3, 4, 3]); Copy
const [aList, bList] = unzip( fromArray([ [2, 3], [5, 4], [11, 3], ]),);expect(toArray(aList)).toStrictEqual([2, 5, 11]);expect(toArray(bList)).toStrictEqual([3, 4, 3]);
Unzips the list of tuple into the tuple of list.