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)

Laravel Home Page

Whiteboards

HTML

Exercise & Lesson Code

Lab

Whiteboards

CSS

Homework

https://github.com/TIY-TN-FEE-2016-spring/assignments/tree/master/01-html-introduction

results matching ""

    No results matching ""