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
class Product { constructor(name, price, discountable) { this.name = name; this.price = price; this.discountable = discountable; } getClearancePrice() { return this.price * 0.5; }}const product1 = new Product("Coffee Maker", 99.95, false);