Skip to content

Instantly share code, notes, and snippets.

@zlrlo
Created November 15, 2022 09:25
Show Gist options
  • Select an option

  • Save zlrlo/9f15e4138762b2a1b32074aeebf163dc to your computer and use it in GitHub Desktop.

Select an option

Save zlrlo/9f15e4138762b2a1b32074aeebf163dc to your computer and use it in GitHub Desktop.
javascript trick - swap
let a = 5, b = 8;
[a, b] = [b, a];
@zlrlo

zlrlo commented Nov 15, 2022

Copy link
Copy Markdown
Author
console.log(a, b);

// output
8 5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment