

Dictionary... No Index Needed!
- Dictionary has keys and values, no index. How about array? - Values are not in any particular order - A key has to be unique. - They...


Array - Mommy, I Created a Shopping List
Array - A list of items with same data type, like a numbered of a grocery list. Items in the array are stored in an index. What is...


Let's Scope & Optionals -- Huh?
== Scope == let isMorning = true var greeting = "" if isMorning { greeting = "Good Morning" } else { greeting = "Good Afternoon" } print(...


Let's Loop...
While loop - checking condition before running the code. Repeat while - Running the code before checking condition. == While Loop...


You Are Hired!
What is mathematical model? ==== Coding standards: - { goes on the same line as condition - Code indented 4 spaces - } goes on a new line...


Making Choices
- Conditional Statement: Tell computer to run some codes bases on a condition - Boolean expression: When a condition is true or false -...