オブジェクトを複数の変数に分割する

const dict = {
    name: 'tarou',
    age: '20',
    adress: 'test@gmail.com',
};

const {name, ...other} = dict;
console.log(name, other);
オブジェクトも配列と同様に、複数の変数に分割をすることができます。

配列と同様に、最後の代入する変数の前に...を付けることで残りのすべての要素を代入することができます。
...で代入した変数にはオブジェクト形式で代入されます。