Skip to content

Instantly share code, notes, and snippets.

@behnamazimi
Last active March 4, 2019 06:01
Show Gist options
  • Save behnamazimi/2891fed34de074f65fd47f1443caf716 to your computer and use it in GitHub Desktop.
Save behnamazimi/2891fed34de074f65fd47f1443caf716 to your computer and use it in GitHub Desktop.
ES6 Assignment Clean Code
// Dirty Code
const a = Obj1.a
const b = Obj1.b
const c = Obj1.c
//Clean Code
const {a,b,c} = Obj1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment