Let's compare some variables!
Make sure to complete your work in the console.
These variables have been created for you:
var a = 'General';
var b = 'General';
var c = 'Assembly';
var x = 10;
var y = '10';
var z = 88;
The operators you have available are:
== // equal
!= // not equal
=== // strict equal
!== // strict not equal
> // greater than
>= // greater than or equal
< // less than
<= // less than or equal
a is equal to variable b.
a is equal to variable c.
x is equal to variable y.
x is equal to variable y, and that it is of the same data type.
x is less than or equal to variable y.
x is greater than variable z.
z is greater than or equal to variable y.
x is not equal to variable a.
x is not equal to variable y.
x is not equal to variable y, or that it is not of the same data type.