Monday February 29
Daily JS
Variable assignment and primitive data types
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
Inspiration
Laravel Home Page (ish)
Whiteboards
Exercise & Lesson Code
Lab
Whiteboards
Homework
https://github.com/TIY-TN-FEE-2016-spring/assignments/tree/master/01-html-introduction