What will be the output of the console.log statement in the following code snippet?
let product = 'Coffee';
let price = 2.99;
console.log(`Product: ${product.padEnd(10)} Price: $${price.toFixed(2)}`);
What will be the output of the console.log statement in the following code snippet?
let product = 'Coffee';
let price = 2.99;
console.log(`Product: ${product.padEnd(10)} Price: $${price.toFixed(2)}`);