Hacker News new | ask | show | jobs
by lifthrasiir 1756 days ago
> just put the private fields in the parent closure where they can't be accessed externally

Your approach can't translate the following code:

    class MyNumber {
        #value;
        constructor(value) { this.#value = value; }
        add(other) { return new MyNumber(this.#value + other.#value); }
    }
The proper solution is to use a non-enumerable property with an unnamed Symbol name, which is possible but cumbersome.
1 comments

You're not supposed to be able to refer to other.#value, though, isn't that the entire point of a private field?
They are private to classes, not instances. Many languages with private fields do allow access to private fields in other instances of the same class.