JavaScript Basics
- Variables.
Declare variables withletand sometimesconst.
Though you will see the oldervar, which works but is not preferred. - Console is your friend.
Your browser developer tools will be critical to use, and especially the "Console". Log to the console in JS withconsole.log('hello there!'); - Strings and numbers
- Objects
- Conditional flow.
if...else - Iterations and Loops.
for...ofand.forEach() - Functions - named and anonymous