string interpolation example

PHOTO EMBED

Tue Jun 28 2022 21:24:17 GMT+0000 (Coordinated Universal Time)

Saved by @cruz #javascript

const myPet = 'armadillo';
console.log(`I own a pet ${myPet}.`);

let myName = 'Natalia';
let myCity = 'Mexico City';

console.log(`My name is ${myName}. My favorite city is ${myCity}.`)
content_copyCOPY