- 1
Help me please
Fill in the blanks to output "We are learning ES6!". let n = 6; let s = 'ES'; let msg = `We are learning {s + n}!`; console.log( );
2 Réponses
+ 2
let n = 6;
let s = 'ES';
let msg = `We are learning ${s + n}!`;
console.log(msg);
+ 2
Joshua
Please avoid writing a plea in the thread's tags. Rather you can tag Javascript and ES6 because those words are more relevant to your question.