JSFiddle - React, Tailwind, and code Playground
by brigand
HTML
<pre id="out"></pre>
JavaScript
class C {
#foo = 1;
foo() {
return this.#foo;
}
}
out.textContent = 'foo: ' + new C().foo()
by brigand
<pre id="out"></pre>
class C {
#foo = 1;
foo() {
return this.#foo;
}
}
out.textContent = 'foo: ' + new C().foo()