This file contains hidden or 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
/* | |
Ensure that multiple calls to the calculateCheap function | |
with the same argument will not result in multiple | |
calls to the calculateExpensive function. | |
Expected console output: | |
calculateExpensive called with = 2 | |
result = 4 | |
result = 4 | |
result = 4 |