scrimba
Introduction to JavaScript
Relational Operators in JavaScript
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

Relational Operators in JavaScript
AboutCommentsNotes
Relational Operators in JavaScript
Expand for more info
index.js
run
preview
console
let example1 = 10;
let example2 = 15;

console.log(example1)
Console
10
,
index.html
-4:04