let tuple = function(){ return [1,3,4];};//解构let [a,b,c] = tuple();//打印的得到的结果console.log(a,b,c);output:1 3 4.
確定! 回上一頁