Phil 4.11.14

8:00 – 5:00 SR

  • DB Backups
  • Updated FY13 and FY14 slides and slide shows.
  • JavaScript
    • A new pattern to get used to:
    • var myGlobalScoped = 0;
      console.log("Hello Block Scope " + myGlobalScoped);
       (function (start, stop) {
           for (var iBlockScoped = start; iBlockScoped < stop; iBlockScoped++) {
               myGlobalScoped += iBlockScoped;
           }
       })(0, 5);
       console.log("Hello Block Scope " + myGlobalScoped);
    • Because JS doesn’t understand block scope.
  • Gotta find out who isn’t filling out their forms in RA.