// Example based on following tweet: https://twitter.com/housecor/status/1247497178882486272 // Class Example class User { constructor(name, email) { this.name = name; this.email = email; } greet() { console.log(`Hi ${this.name}`); } contact() { console.log(`Emailing ${this.email}`); } } const cory = new User("Cory", "cory@reactjsconsulting.com"); cory.contact();