Skip to content

Instantly share code, notes, and snippets.

@antonkalik
Created May 19, 2025 06:29
Show Gist options
  • Save antonkalik/2e0b5e46d62ac70531696d53cbef6930 to your computer and use it in GitHub Desktop.
Save antonkalik/2e0b5e46d62ac70531696d53cbef6930 to your computer and use it in GitHub Desktop.
Loop Test
console.time("Node Loop Benchmark");
let sum = 0;
for (let i = 0; i < 1_000_000_000; i++) {
sum += i;
}
console.timeEnd("Node Loop Benchmark");
console.log("Sum:", sum);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment