Here is how the code is written in the exercise:
const city = ‘New York City’;
const logCitySkyline = () => {
let skyscraper = ‘Empire State Building’;
return 'The stars over the ’ + skyscraper + ’ in ’ + city;
};
console.log(logCitySkyline());
Why wouldn’t you wite the code within the return statement with string interpolation? Like this:
The stars over the ${skyscraper} in ${city}
;
I am confused with the + signs within the function surrounding the variables.