Let’s cover working with Text:

fill(200,0,0);

textFont('Courier');
//textFont('Georgia');
//textFont('Helvetica');
//textFont('Verdana');
//textFont('Arial');
//textFont('Times');
//textFont('Comic Sans MS');

textStyle(NORMAL);
//textStyle(ITALIC);
//textStyle(BOLD);
//textStyle(BOLDITALIC);

textSize(50);
text("Dave Was Here",100,40);

Data Types and Strings

Object Review

Last week we covered objects

There is something that shows up in video 7.1 that was not covered… the ability to simply initialize a variable as an object

let dObj = { x: 100, y: 200};

Strings

Arrays