Monday October 19

Daily JS

var x = 1;
var y = 'abc';
var z = true;
var a = x;
x = 2;

console.log(x);
console.log(y);
console.log(z);
console.log(a);

/* Results */
// 2
// abc
// true
// 1

Topics

Lab

Homework

https://github.com/TIY-LR-FEE-2015-Fall/assignments/tree/master/02-basic-git-pr