class Todo { ⏎ isComplete = false; constructor(text) { this.text = text; } rename(text) { this.text = text; } toggle() { this.isComplete = !this.isComplete; } }