Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created March 9, 2017 08:40
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save debugmodedotnet/a6b01cbe8e42a5d5bd80e76362ef60f1 to your computer and use it in GitHub Desktop.
class Student {
constructor(name, age) {
this.name = name;
this.age = age;
}
getData() {
return this.name + " is " + this.age + " years old !";
}
}
console.log(typeof (Student));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment