Wed. Jan. 5th
Move to Online Learning

Welcome back from an extra-long holiday break!


Instant Answer Question Time

(opportunity to ask anything you want)

Where are we in the course? Great question! 

So far we have covered all the basic coding constructs:

We've also seen some things specific to JavaScript (but usually available in other languages):

All of this is readily available in tutorials online and through w3schools.

Does anyone need a refresher or quick tutorial on anything listed above (or anything I missed)?

You've created guessing games and several different helpful functions!

Having helper functions on hand can save a lot of time - instead of reinventing the wheel! For example, we've used this one a lot:

function randInt(min, max) {
  min = Math.ceil(min);
  max = Math.floor(max);
  return Math.floor(Math.random() * (max - min + 1)) + min;
}

Many programmers keep these snippets of useful code in a safe place - you might want to consider doing that!

So what now, boss?

Some of you are not finished all of the tasks / assignments in the course. In fact - many are still behind in Unit 0. 

That's it for today. Tomorrow we will start back up with a Unit 3 Summary task that will involve Arrays, so make sure you understand loops and arrays!