how to use STRING INTERPOLATION on an object code example
Example: string interpolation in javascript
const number = 42;
const message = `The number is ${number}`;
message; // => 'The number is 42'
const number = 42;
const message = `The number is ${number}`;
message; // => 'The number is 42'