JavaScript Logo

JavaScript: Todo item class

class Todo { ⏎
	isComplete = false;

	constructor(text) {
		this.text = text;
	}

	rename(text) {
		this.text = text;
	}

	toggle() {
		this.isComplete = !this.isComplete;
	}
}
Accuracy
100 %
0 Mistakes
CPM
0
Average: 0 CPM
Time
0.000 s
Personal best: -.--- s