Hello , in question 14 i dont really understand what the difference between my answer:
console.log("Crypto 1:",crypto1);
console.log("Crypto 2:",crypto2);
console.log("Crypto 3:",crypto3);
and the answer in the solutions :
console.log(`Crypto 1: ${crypto1}`);
console.log(`Crypto 2: ${crypto2}`);
console.log(`Crypto 3: ${crypto3}`);
Is there any difference between them?or its just two ways to do one thing…
thx