Skip to content

Instantly share code, notes, and snippets.

@ahmarsuhail
Last active July 16, 2019 18:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmarsuhail/7d91300e784933be4b3053d79d10fba6 to your computer and use it in GitHub Desktop.
Save ahmarsuhail/7d91300e784933be4b3053d79d10fba6 to your computer and use it in GitHub Desktop.
class User {
constructor(name) {
this.name = name;
}
printName() {
console.log(this.name);
}
}
const user = new User("Ahmar")
user.printName(); //Outputs: Ahmar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment