scrimba
Learn JavaScript
Passenger counter
Improve the message with string concatenation
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Improve the message with string concatenation
AboutCommentsNotes
Improve the message with string concatenation
Expand for more info
index.js
run
preview
console
let welcomeEl = document.getElementById("welcome-el")

let name = "Per Harald Borgen"
let greeting = "Welcome back "

welcomeEl.innerText = greeting + name

// Add an emoji to the end!
// WRITE YOUR CODE BELOW HERE
// HINT: count = count + 1

Console
/index.html
-2:15