scrimba
Learn Basic JavaScript
Comparison with the Strict Inequality 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

Comparison with the Strict Inequality Operator
AboutCommentsNotes
Comparison with the Strict Inequality Operator
Expand for more info
index.js
run
preview
console
// Setup
function testStrictNotEqual(val) {
// Only Change Code Below this Line

if (val) {

// Only Change Code Above this Line

return "Not Equal";
}
return "Equal";
}

// Change this value to test
console.log(testStrictNotEqual(10));
Console
index.html
-0:42