1103 作业解构赋值// ?解构赋值let arr = [10,200]let a = arr[0]let b = arr[1]console.log(a,b)console.log('------------')// * 一,解构语法,数组解构/...