Skip to content

Instantly share code, notes, and snippets.

@deborasetton
Created October 9, 2014 10:07
Show Gist options
  • Select an option

  • Save deborasetton/0e75aff6e9ea06f1e967 to your computer and use it in GitHub Desktop.

Select an option

Save deborasetton/0e75aff6e9ea06f1e967 to your computer and use it in GitHub Desktop.
Examples from "Become a Javascript Console Power-User"
// Source: https://www.youtube.com/watch?v=4mf_yNLlgic
// https://www.youtube.com/watch?v=4mf_yNLlgic#t=75
console.time('ajax');
// Do something!
console.timeEnd('ajax');
// https://www.youtube.com/watch?v=4mf_yNLlgic#t=111
console.log(element);
console.dir(element); // or dir(), if in console.
// https://www.youtube.com/watch?v=4mf_yNLlgic#t=183
$0;
// https://www.youtube.com/watch?v=4mf_yNLlgic#t=222
monitorEvents($$('textarea')[0]);
// https://www.youtube.com/watch?v=4mf_yNLlgic#t=270
keys(document);
values(document);
// https://www.youtube.com/watch?v=4mf_yNLlgic
copy(keys(document));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment