Tutorial by Examples

6 class Item { constructor(text, type) { this.text = text; this.emphasis = false; this.type = type; } toHtml() { return `<${this.type}>${this.emphasis ? '<em>' : ''}${this.text}${this.emphasis ? '</em>' : ''}</${this.type}...

Page 1 of 1