Array.from2019年6月27日Array.from([1, 2, 3], ( x , y ) => x + y); // 1, 3, 5 這裡的arrow function是map function,y就是index const nestedArray = [['😉'],{kind: "🐦"},['😇']] const a...