class MyClass
{
// Prepend hash to make it private. Browser support at:
// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Private_class_fields#browser_compatibility
// Dynamic access (ie: this.#[fieldName]) is disallowed by design.
#myPrivateMethod() {
// do private things
}
}