Não sei qual foi o problema que fez ter esse resultado na tabela.
Meu Negociacao.js acho que está correto, ou faltou mais algo sobre a variavel volume?
clases Negociacao {
constructor(data, quantidade, valor) {
this._data = new Date(data.getTime());
this._quantidade = quantidade;
this._valor = valor;
Object.freeze(this);
}
get volume() {
return this._quantidade * this._valor;
}
get data() {
return new Date(this._data.getTime());
}
get quantidade() {
return this._quantidade;
}
get valor() {
return this._valor;
}
}