Question from the Javascript - Fundamentals test

Write a Javascript code to display the title of a book and the name of its author.

Easy

What does the following code display?

let title = 'Les Misérables'; 
let author = 'Victor Hugo'; 
const description = `Happy reading of ${title} written by `+author; 
console.log(description); 
Author: AdrienStatus: Published(Update)Question passed 173 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!