JavaScriptに関するメモ

1.配列

let a = [10 , 20 , 30] ;
let x , y , z ;
[x , y , z] = a ; // ブラウザにより対応が異なる。

このブラウザでの実行結果: