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
| function recursiveEach(list, iterator) { | |
| if (list.length === 0) { | |
| return undefined; | |
| } | |
| iterator(list[0]); | |
| return recursiveEach(list.slice(1), iterator); | |
| }; |
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
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Istantation Patterns Permormance Test</title> | |
| <script src="functional.js"></script> | |
| <script src="functionalShared.js"></script> | |
| <script src="protototypal.js"></script> | |
| <script src="pseudoclassical.js"></script> | |
| </head> | |
| <body> |
NewerOlder