Classes

From rbachwiki
Revision as of 18:32, 3 December 2016 by Bacchas (talk | contribs)
Jump to navigation Jump to search

Classes

class Person{
constructor(name, yearOfBirth, job){
this.name = name;
this.yearOfBirth = yearOfBirth;
this.job = job;

}
}

Back To Top- Home - Category