reading-notes

These are my reading notes for Code Fellows


Project maintained by taegorov Hosted on GitHub Pages — Theme by mattgraham

Home

Reading Notes Code 201: Day 3

Notes - Chapter 3: “Lists” (pp.62-73)

Notes - Chapter 13: “Boxes” (pp.300-329)

Display Types

Often used for a site’s nav bar

Notes - Chapter 4: “Decisions and Loops” from switch statements on (pp.162-182)

Loops

A code block will run repeatedly (in a loop) until it returns the condition of false.

for runs a code a certain number of times

while code will continue to run as long as a condition is true

do...while like while, with some caveats

Loop Counters