// program to swap variables let x = 4; let y = 7; // swapping variables [x, y] = [y, x]; console.log(x); // 7 console.log(y); // 4