let name = "John";
let age = 30;
let food = "pizza";
// String formating using backticks
let sentence = `${name} is ${age} years old and likes ${food}`;
console.log(sentence);
// John is 30 years old and likes pizza
// String formating using plus operator
let sentence = name + ' is ' + age + ' years old and likes ' + food;
console.log(sentence); // John is 30 years old and likes pizza