Tuesday March 8
Daily JS
Functions and Fat Arrow Syntax
var x = function() {
console.log('hello');
return 'Passed from x';
};
function y() {
console.log('world');
}
var z = () => {
console.log('yup');
};
var a = () => {
return 'no';
};
console.log(x); // [Function]
x(); // "hello"
console.log(x()); // "hello" // "Passed from x"
console.log(y()); // "world" // undefined
console.log(z()); // "yup" // undefined
console.log(a()); // "no"
Interruptions
- Meeting 2PM
Standups
- What is going well?
- What is not going well (what are you struggling with)?
- What's something you'd like to share not about code?
- What's something you've learned
Common Wins
- SASS helps keep details together
- Flexbox
Common Struggles
- "Right Way"?
- Keeping up with HW
- Wanting to get the details just right
- GoT and Bachelorette ALL THE FEELINGS!!!
Topics
- Resources
- Media Queries
- Pseudo Selectors & Elements
- CSS
content
Inspiration
Exercise & Lesson Code
https://github.com/tiy-tn-fee-2016-summer/lesson-02-01/tree/tuesday
Lab
Homework
https://online.theironyard.com/paths/379/units/2144/assignments/4948