Help me please | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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( );

10th Feb 2021, 5:13 AM
Joshua Evicner
Joshua Evicner - avatar
2 Answers
+ 2
let n = 6; let s = 'ES'; let msg = `We are learning ${s + n}!`; console.log(msg);
10th Feb 2021, 5:35 AM
Avinesh
Avinesh - avatar
+ 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.
10th Feb 2021, 9:53 AM
Ipang