// Can only be used within this scope private #data; class StringBuilder { // Accessible within this scope #data = ''; add(str) { this.#data += str; } } function toString(sb) { return this.#data; }