Eu olhei e ainda não descobrir porque o retorno esta sendo "undefined"
const negociacao = new Negociacao(new Date(), 1, 100);
console.log(negociacao.quantidade);class Negociacao { 
    construtor(data, quantidade, valor){
        this._data = data;
        this._quantidade = quantidade;
        this._valor = valor;
    }
    get data(){
        return this._data;
    }
    get quantidade(){
        return this._quantidade;
    }
    get valor(){
        return this._valor;
    }
    get volume(){
        return this._quantidade * this._valor;
    }
} 
            