taken from https://flaviocopes.com/javascript-private-class-fields/
Before the introduction of private class fields, we could not really enforce private properties on a class. We used conventions instead, maybe using _ as an hint that the field is private, like this:
class Counter {