Feynman Writing Prompts -
Callback Functions - Functions that are passed as arguments to other functions.
Closure - Returning a function from a function. The function that gets returned remembers the scope of the function it was returned from.
arguments array A pseudo array used to for accessing all the different arguments that can pass through a function. Can use limited array methods, such as .length.
recursion - Calling a function inside of itself.
prototype - Makes a new variable remember its constructor. One template function in memory for all child functions to use instead of a function for each child function.
constructors - A pseudo class template for objects you want to create.