| fun-with-js | Introduction to some javascript 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
newandthiskeywords, and most specifically - that they do not have the same meaning as in Java. - We have experienced the problem of the missing
thiscontext - We learned about javascript scopes and Closures
- We learned about the
prototypeobject and property - We learned the difference between serverside javascript (NodeJS) and clientside web javascript
- We talked about modularity and the
requirekeyword - We talked about
webpack- a utility to pack "serverside" javascript files into one "web-ready" file
- We talked about modularity and the