Skip to content

Instantly share code, notes, and snippets.

@johnmichel
Created September 2, 2010 19:38
Show Gist options
  • Select an option

  • Save johnmichel/562816 to your computer and use it in GitHub Desktop.

Select an option

Save johnmichel/562816 to your computer and use it in GitHub Desktop.
Simplifying console.log() calls
/* usage: logThis('pixel[0]',pixel[0]); */
function logThis(name,str) {
console.log(name+': ' + str);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment