Closed
Description
The JavaScript 101 section seems a bit out of order in it's current state. It is also missing a few important sections, some being referenced in current sections and others not, but should be. I was thinking about moving things around, but figured I would ask for some feedback before doing so. Below is a rough outline of how IMO it should be organized. Appreciate any feedback!
- syntax
- overview with links to sections, etc.
- needs to be built out more, its pretty bare
- note importance of understanding the basics of vanilla JS, because jQuery is still JS. :-)
- reserved words
- possibly include links to mozilla docs if we have them for each keyword.
- make note about future reserved/java key words, don't want anyone going on a wild goose chase trying to find
which browser implements all these java keywords.
- types
- primitive
- objects
- arrays
- testing type
- operators
- current stuff, plus a link to type conversions when referenced
- conditionals
- current stuff, plus a link to type conversions when referenced
- loops
- current stuff
- type conversions
- be nice to have a table of type conversions
- truthy and falsy
- this is referenced in articles but is not written.
- functions
- declarations
- expressions
- anonymous
- immediate
- scope
- current stuff
- closures
- current stuff
- "this"
- current stuff
- continued reading
- links to solid articles for more learning