For example I could do :console.log(`Hello World`);
and it would still run like console.log('Hello World');
The only difference I can see is I can do
let item1 = 'Food';
console.log(`I want ${item1}`);
and it would print I want food, whereas if I go
console.log('I want ${item1}');
using quotation marks it would print "I want ${item1}"
So is the only difference I can see is that I can call variables for one? And if so why do we use quotation marks in console logs?