Skip to content

Instantly share code, notes, and snippets.

@shahab570
Created January 2, 2021 18:23
Show Gist options
  • Save shahab570/7a5a3269e322db1b05f10fa122f97b74 to your computer and use it in GitHub Desktop.
Save shahab570/7a5a3269e322db1b05f10fa122f97b74 to your computer and use it in GitHub Desktop.
var a = "first";
var b = "second";
var [a, b] = [b, a];
console.log(a); //second
console.log(b); //first
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment