-
Notifications
You must be signed in to change notification settings - Fork 11
Lesson Plan wk 2
Anthony Meirlaen edited this page Nov 2, 2019
·
9 revisions
In class you'll get a first taste of JS, but the main objectives will be understanding why JavaScript is important and learning how to start the homeworks.
- Be ready with your questions from last weeks' homework!
- Go over frequently asked questions
- Recap on topics
- updating a fork
- resolving a merge conflict
- understanding how remotes work https://learngitbranching.js.org/
- complete the remote exercises
- selecting elements
- attaching listeners
Welcome to array methods!
Documentation is actually a lot like the test cases you have seen so far in your exercises, the main three things to pay attention for are:
- Arguments: what values do you pass into the function/method?
- Return Value: what will the function/method return?
- Behavior: what does the function do, how is the return value related to the arguments?
- about objects (js.info)
- [copying an object](https://scotch.io/bar-talk/copying-objects-in-javascript0
- solve
objects.js
Linters and style guides: Does everyone have one installed?
Week 2 Project
- solve
isPrimitivetogether - solve
hasKey: talk about whyObject.hasOwnPropertyis important