Get your program started with the main function
How is Javascript code executed in JSbin
It is executed when you hit run. It reads code line by line.
How is Javascript code executed in web browsers?
Often, in webpages, the HTML runs the Javascript files which are called in HTML. They are generally executed in the order they are called.
What do all programs have in common in relation to functions?
There is always some form of main function. This function is the program. This function is triggered first then the program works based on what other functions that function calls.
How do you execute a function?
You call it by it's name
Define a function
A block of code that has a name
What is a framework?
A collection of useful functions grouped together by a category.