Last active
July 19, 2016 04:04
-
-
Save The-Quill/08258d0caac2cb9fb34b2808377108d9 to your computer and use it in GitHub Desktop.
Object destructuring syntax to copy props
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Test { | |
constructor(data){ | |
for(var key in data){ | |
({ [key]: this[key] } = data); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment