sai_dive IL

学んだことのアウトプットブログ

【JavaScript】分割代入

分割代入

let a, b, rest;
[a, b ] = [10, 20];
console.log(a);
#=> 10
console.log(b);
#=> 20