← Back to Question List
JavaScript Code Walkthrough #4
Template Literal Output
📄 Code
Read carefully — what does this print?1const name = "Sam";2const count = 3;3console.log(`${name} has ${count} apples`);