Skip to content

Instantly share code, notes, and snippets.

View mantismamita's full-sized avatar

Kirsten Cassidy mantismamita

View GitHub Profile
@mantismamita
mantismamita / console.js
Created December 20, 2019 22:20 — forked from Harshmakadia/console.js
Mastering JS console like a Pro
// 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