+ 2
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(msg);
5 odpowiedzi
+ 2
$
msg
+ 1
Luis Melo you post it in wrong place 🙃
+ 1
Just remove the space after $
0
$/msg
0
let scores = [68,95,54,84,77,75,63,74,69,80,71,63]
var count = 0 ;
for (let sc of scores)
{if (sc>= 70)
count ++}
console.log(count ++);