You can swap the values of two variables using destructuring assignment. This eliminates the need for a temporary variable.
Example:
let a = 1, b = 2;
[a, b] = [b, a];
console.log(a, b); // Output: 2 1
Tags: intermediate, JavaScript, Destructuring
URL: https://www.tiktok.com/@jsmentoring/photo/7472310346334620950