Typescript > Typescript - 1 - Basic types > Flashcards
Using template literals, how do you output to console hello math if math is stored in a name const?
const name = math; console.log(`Hello ${name}`);