We all know that the most typical way to swap data stored in two different variables involves using a temporary variable to store information: // our initial values let a = 4; let b = 6; // swap the values by using a temporary variable let temp = a; a = b; b = temp; // see that