Kingston_Pendrive/Suli/13.b/Frontend/Javascript/2024. 11. 08/js/Bejegyzes.mjs

13 lines
253 B
JavaScript
Raw Normal View History

2024-11-19 18:04:02 +00:00
class Bejegyzes {
constructor(id, cim, tartalom) {
this.id = id
this.cim = cim
this.tartalom = tartalom
}
getReszletek() {
return `${this.id}, ${this.cim}, ${this.tartalom}`
}
}
export default Bejegyzes;