// models/Continente.js class Continente { constructor(codigo, nombre) { this.codigo = codigo; this.nombre = nombre; } toString() { return `Continente [codigo=${this.codigo}, nombre=${this.nombre}]`; } } module.exports = Continente;