What will be the output of the following code snippet?
const quantity = 10;
const price = 5;
console.log(`Total cost: ${quantity * price}`);
What will be the output of the following code snippet?
const quantity = 10;
const price = 5;
console.log(`Total cost: ${quantity * price}`);