scrimba
Learn Basic JavaScript
Comparisons with the Logical And Operator
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

Comparisons with the Logical And Operator
AboutCommentsNotes
Comparisons with the Logical And Operator
Expand for more info
index.js
run
preview
console
function testLogicalAnd(val) {
// Only change code below this line

if (val) {
if (val) {
return "Yes";
}
}

// Only change code above this line
return "No";
}

// Change this value to test
testLogicalAnd(10);
Console
"Smaller Than or Equal to 12"
,
index.html
-1:28