Skip to content

Instantly share code, notes, and snippets.

@ilearnjavascript
Created March 27, 2019 23:32
Show Gist options
  • Save ilearnjavascript/26a3fdcdf986ef48b90bcbf728ba6014 to your computer and use it in GitHub Desktop.
Save ilearnjavascript/26a3fdcdf986ef48b90bcbf728ba6014 to your computer and use it in GitHub Desktop.
es6 - destructuring - 7.js
var es6_destructuring6 = function() {
var firstname = 'John';
var lastname = 'Doe';
[firstname, lastname] = [lastname, firstname];
console.log(firstname);
console.log(lastname);
}
es6_destructuring6();
// outputs:
// Doe
// John
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment