There is absolutely no reason to prefer the destructuring assignment over simply
let x = 'hi', y = x;
Not only it's one statement instead of two, but it also avoids extra allocations (the provided solution with destructuring allocates at least one object with no good reason).