$ {} js
let x = 5;
console.log("hello world " + x + " times");
console.log(`hello world ${x} times`);
Selfish Sable
let x = 5;
console.log("hello world " + x + " times");
console.log(`hello world ${x} times`);
let x = 5;
console.log("hello world " + x + " times");
console.log(`hello world ${x} times`);