← All examples Counter JavaScript Classes & methods class method Flowchart (ISO 5807) Flowchart Structogram Startthis.value++EndFigure 1 — Counter.inc Source code class Counter { value = 0; inc() { this.value++; } } Open in the editor