xxxxxxxxxx
13
let student1 = ('Sara');
let student2 = ('Ayat');
function setup() {
createCanvas(400, 400);
print (student1 == student2); // this will print false because they're not equivalent
print (student1 != student2); // this will print true because it's true that they are not equivalent; ! this exclamation mark means 'not'
}
function draw() {
background(220);
}