Com a '#' você consegue o mesmo resultado atendendo a nova conveção de javascript
Podem testar !!
class Negociacao {
#data;
#quantidade;
#valor;
#volume;
constructor(data, quantidade, valor){
this.#data = data;
this.#quantidade = quantidade;
this.#valor = valor;
}
get volume() {
return this.#quantidade * this.#valor;
}
get data(){
return this.#data;
}
get quantidade(){
return this.#quantidade;
}
get valor(){
return this.#valor;
}
} /////////////////////////////////