Test 1 Review words funny comments and such
more funny stuff
JAVASCRIPT Variables Types: Pictures (Object super advanced) Integers (Numbers) Words Boolean (true / false) Operation with different types String + String = Bigger String "mr " + "guzy" = "mr guzy" String + Integer = ??? "password" + 123 = "password123" "2" + 3 = "23" Integer + Integer = elementary math 7 + 4 = 11 Commands ctx.fillText(string value, x , y) EX ctx.fillText("Bort" + 123, 100, 215); ctx.fillStyle = 'red' ctx.fillStyle = '#FF0033'; ctx.fillRect(x, y, w, h); EX ctx.fillRect(100, 115, 50,80);