scrimba
Frontend Career Path
Making websites interactive
Chrome Extension
Functions with multiple parameters
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

Functions with multiple parameters
AboutCommentsNotes
Functions with multiple parameters
Expand for more info
index.js
run
preview
console
const welcomeEl = document.getElementById("welcome-el")

function greetUser(greeting) {
welcomeEl.textContent = greeting + ", Per Harald Borgen 👋"
}

greetUser("Howdy")
Console
/index.html
-3:11