// Can only be used within this scope private #data; function create() { return { // Only accessible within this scope #data: '', }; } function add(sb, str) { sb.#data += str; } function toString(sb) { return sb.#data; }