WebFund 2013W Lecture 6

From Soma-notes
Jump to navigation Jump to search

Topics:

  • git
  • Functions in JavaScript (Chapter 4 in Crockford).

Audio for the lecture on January 24, 2013 is here.

Questions

  1. In git, which is the term used for making a local copy of a remote repository, branch, clone, or fork? (one word)
  2. In git, pushes to the main repository can be dangerous because they can cause file conflicts, add unwanted changes, and cannot be easily undone. (true/false)
  3. Augmenting a built-in type in JavaScript uses the same syntax as adding a method to a regular object. (true/false)
  4. Read access to unqualified symbols are resolved by looking at the symbols defined in the inner most function context outward until the global function context is reached. (true/false)
  5. Read access to object properties are resolved by looking at the object's properties and then by looking at the chain of objects pointed to by the objects on the prototype chain. (true/false)