Class Public Instance Fields & Private Instance Fields before class ColorButton extends HTMLElement { constructor() { this.color = "red" this._clicked = false } } const button = new ColorButton() // Public fields can be accessed and changed by anyone button.color = "blue" // Curse your sudden but inevitable betrayal console.log(button._clicked) // Prints: false, can be accessed from the instance..