Skip to content

Instantly share code, notes, and snippets.

View d0t15t's full-sized avatar

Isaac Bigsby Trogdon d0t15t

View GitHub Profile
// time and time end
console.time("This");
let total = 0;
for (let j = 0; j < 10000; j++) {
total += j
}
console.log("Result", total);
console.timeEnd("This");
// Memory