You could take Array.from and map the key/value pairs. let map = new Map().set('a', 1).set('b', 2), array = Array.from(map, ([name, ...
確定! 回上一頁