class Comment { constructor(start, end, title, text) { this.start = start; this.end = end; this.title = title; this.text = []; for (let i = 0; i < text.length; i++) { this.text.push(text[i].innerHTML); } } }