import Pessoa from './pessoa.js' class PessoaJuridica extends Pessoa { #_cnpj constructor(nome) { super(nome) } set cnpj(cnpj) { this.#_cnpj = cnpj } get cnpj() { return this.#_cnpj } mostrarDados(){ return `Meus dados são: ${this.nome} e ${this.cnpj}` } } export default PessoaJuridica