Skip to content

Instantly share code, notes, and snippets.

@oneshadab
Created January 2, 2023 21:56
Show Gist options
  • Save oneshadab/44663791ae73ba3ad39b71452a43a3ee to your computer and use it in GitHub Desktop.
Save oneshadab/44663791ae73ba3ad39b71452a43a3ee to your computer and use it in GitHub Desktop.
/* eslint-disable @typescript-eslint/no-unused-vars */
const sizes = [1000, 100000, 1000000, 10000000, 100000000];
async function run() {
let count = 0;
const counts: {
forOf: {
[key in number]: number;
};
forLoop: {
[key in number]: number;
};
forEach: {
[key in number]: number;
};
forLoopCached: {
[key in number]: number;
};
} = {
forOf: {},
forEach: {},
forLoopCached: {},
forLoop: {},
};
const trialCount = 10;
for (const size of sizes) {
const arr = [...Array(size)];
counts.forOf[size] = 0;
counts.forEach[size] = 0;
counts.forLoop[size] = 0;
counts.forLoopCached[size] = 0;
for (const _trial of Array(trialCount)) {
let startTime = Date.now();
count = 0;
for (const _elem of arr) {
count++;
}
console.assert(count === arr.length);
let ms = Date.now() - startTime;
counts.forOf[size] += ms;
startTime = Date.now();
count = 0;
arr.forEach((a) => {
count++;
});
console.assert(count === arr.length);
ms = Date.now() - startTime;
counts.forEach[size] += ms;
startTime = Date.now();
count = 0;
for (let index = 0; index < arr.length; index++) {
count++;
}
console.assert(count === arr.length);
ms = Date.now() - startTime;
counts.forLoop[size] += ms;
startTime = Date.now();
count = 0;
for (let index = 0, len = arr.length; index < len; index++) {
count++;
}
console.assert(count === arr.length);
ms = Date.now() - startTime;
counts.forLoopCached[size] += ms;
}
Object.keys(counts).forEach((loopType) => {
counts[loopType as any as keyof typeof counts][size] =
counts[loopType as any as keyof typeof counts][size] / trialCount; // calc avg
});
}
console.table(counts);
return count;
}
run()
.then(() => {
console.log('done');
process.exit(0);
})
.catch((err) => {
console.error(err);
process.exit(1);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment