Today’s notes focus on JavaScript functions and included notes on closures, arrow functions, defining functions, and JavaScript built in functions.
JavaScript Notes
Notes from the MDN JavaScript Guide (Loops and Iteration)
Loops all essentially do the same thing: repeat an action some number of times. JavaScript has 8 statements provided for loops.
Notes from the MDN JavaScript Guide (Control Flow and Error Handling)
Today’s notes cover JavaScript control flow and error handling.
I believe the most important take-aways are 1) Javascript’s uses “falsey” values and that in try…catch…finally statements, the finally statement executives in all cases, whether or not an exception is throw.
Notes from the MDN JavaScript Guide (Intro, Grammar and Types)
Today, I began reading through the MDN JavaScript Guide to get a better understanding of the JavaScript language.
Here, I documented the points I wanted to take away about what the guide shares about JavaScript language’s grammar and types.