Tuesday March 8
Daily JS
Daily JS
Functions and Fat Arrow Syntax
var x = function() {
console.log('hello');
};
function y() {
console.log('world');
}
var z = () => {
console.log('yup');
};
var a = () => {
return 'no';
};
console.log(x); // function() { console.log('hello') }
console.log(x()); // "hello" // undefined
console.log(y()); // "world" // undefined
console.log(z()); // "yup" // undefined
console.log(a()); // "no"
Interruptions
- Meeting 12:30-1:30
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 Struggles
- Breaking Down Components and Wireframes
- Flex Wrap, Flex Grow, Flex Shrink
- Layout
align-items
vsjustify-content
*
Topics
- Resources -
- Media Queries
- Pseudo Selectors
- Pseudo Elements
- CSS
content
Inspiration
Exercise & Lesson Code
https://github.com/TIY-TN-FEE-2016-spring/lesson-02-02
Lab
Homework
https://github.com/TIY-TN-FEE-2016-spring/assignments/tree/master/06-tshirt-layout