Initial Memoization Example Notes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MEMOIZATION AND CACHING: THE CONSTRUCTION FUNCTION EXAMPLE | |
// In order to better our understanding of Memoization, we will write a function | |
// entitled 'Building' and apply various logged results to observe the behaviour | |
// of JavaScript. | |
// ****Additional Notes**** | |
// In this example, you are the boss of a construction company. | |
// The construction company will be a reference to your Application. | |
// Javascript execution commands will be traced by a reference to your Construction | |
// Companies employees: Bob and Susy. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment