Not sure where to start?
Bootcamp
Study group
Collaborate with peers in your dedicated #study-group channel.
Code reviews
Submit projects for review using the /review command in your #code-reviews channel
/review
Karma
scrimba
/* LEARN TYPESCRIPT PART 3 classes interfaces interfaces with classes*///basic javascript classclass Person { name; isCool; pets; constructor(n, c, p) { this.name = n; this.isCool = c; this.pets = p; } sayHello() { return `Hi, my name is ${this.name} and I have ${this.pets} pets`; }}const person1 = new Person('Danny', false, 2);const person2 = new Person('Sarah', 'yes', 6);