Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 930 Bytes

File metadata and controls

18 lines (15 loc) · 930 Bytes

Module 1 - Javascript

Projects:

fun-with-js Introduction to some javascript gotchas

Javascript types and gotchas

  • We have Convered the 7 types of javascript: boolean, number, string, object, function, null and undefined
  • We have seen how to use JSON to describe complex object values
  • We have seen the true meaning of the new and this keywords, and most specifically - that they do not have the same meaning as in Java.
  • We have experienced the problem of the missing this context
  • We learned about javascript scopes and Closures
  • We learned about the prototype object and property
  • We learned the difference between serverside javascript (NodeJS) and clientside web javascript
    • We talked about modularity and the require keyword
    • We talked about webpack - a utility to pack "serverside" javascript files into one "web-ready" file