scrimba
Black Friday Previews
Preview 2
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

Preview 2
AboutCommentsNotes
Preview 2
Expand for more info
index.js
run
preview
console
const user = { first: 'Mark', last: 'Zuckerberg' };

function greetUser(user) {
return `Welcome back, ${user.first} ${user.last}`;
}
Console
/index.html
-7:15