View on GitHub

reading-notes

My learning journal for Code Fellows

Testing and Modules

In Tests We Trust

Unit Tests: Pieces of code to test the input, output, and behavior of your code

TDD: Test Driven Development. A strategy where you think and write tests first when writing code.

The best way to organize your code when thinking about TDD is AAA:

Recursion

Recursion: Recursion happens when a function loops back in on itself a number of times before completing itself. The example in the video cited factorials. Because the factorial function references itself, it loops for a number of loops equal to the number that it is fed. This is an example of stacking, where functions to be computed are lined up behind each other (called stack frames), in order of what gets solved last. Finally when the final and smallest function is able to be solved, the rest can then follow.

Things I want to know more about