Skip to content

Instantly share code, notes, and snippets.

@aramkoukia
Last active December 22, 2016 17:49
Show Gist options
  • Save aramkoukia/50049c6b8e9f3357453b57c4b8c0ce70 to your computer and use it in GitHub Desktop.
Save aramkoukia/50049c6b8e9f3357453b57c4b8c0ce70 to your computer and use it in GitHub Desktop.
JavaScript Class, Class constructor and usage
class Profile {
constructor(name) {
console.log('User ${name} was created.');
this.name = name;
}
}
// How to instantiate the class
const user = new MyClass('Aram'); // logs: "User Aram was created"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment