const title = "Best reads of 2019"; const author = "Mario"; const likes = 10; // let result = "The blog called " + title + " by " + author + " has " + likes + " likes"; // Mit der Template-strings let result = `The blog called ${title} by ${author} has ${likes} likes`; let html = `

${title}

By ${author}

The blog has ${likes} likes `; console.log(result); console.log(html);