deno/cli/tests/es_private_fields.js

16 lines
202 B
JavaScript
Raw Normal View History

class Foo {
#field = "field";
setValue(val) {
this.#field = val;
}
getValue() {
return this.#field;
}
}
const bar = new Foo();
bar.setValue("PRIVATE");
console.log(bar.getValue());