Skip to content

Instantly share code, notes, and snippets.

View juanpumpkinpie's full-sized avatar
:octocat:
working

juanpumpkinpie juanpumpkinpie

:octocat:
working
  • Poland
View GitHub Profile
@juanpumpkinpie
juanpumpkinpie / console.js
Created December 28, 2019 11:04 — 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