解构使得将数组中的值或对象中的属性解包为不同的变量成为可能。优点一些用例从对象、数组中获取变量值。let array = [1, 2, 3, 4, 5];let [first, second, ...rest] = array;consol...