Last active
December 19, 2023 06:00
-
-
Save sorenlouv/5083d73f184acae0c5b7 to your computer and use it in GitHub Desktop.
A CPU intensive operation. Use to test imitate blocking code, test WebWorkers etc.
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
function mySlowFunction(baseNumber) { | |
console.time('mySlowFunction'); | |
let result = 0; | |
for (var i = Math.pow(baseNumber, 7); i >= 0; i--) { | |
result += Math.atan(i) * Math.tan(i); | |
}; | |
console.timeEnd('mySlowFunction'); | |
} | |
mySlowFunction(8); // higher number => more iterations => slower |
Nice
👍
Another function with similar functionality seen elsewhere:
function mySlowFunction(blockTime: number) {
console.time('mySlowFunction');
const now = performance.now();
while(performance.now() - now < blockTime) {}
console.timeEnd('mySlowFunction');
}
mySlowFunction(1000); //millisecond
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cool