scrimba
JS Deep Dive
Types & Conditionals
Even Shorter Conditionals with Short-Circuiting
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

Even Shorter Conditionals with Short-Circuiting
AboutCommentsNotes
Even Shorter Conditionals with Short-Circuiting
Expand for more info
index.js
run
preview
console
const response = "Reed";

let username;

if (response) {
username = response;
} else {
username = "guest";
}

console.log(username);
Console
index.html
-10:33