Skip to content

Instantly share code, notes, and snippets.

@andreruffert
Created May 7, 2012 14:21
Show Gist options
  • Save andreruffert/2628040 to your computer and use it in GitHub Desktop.
Save andreruffert/2628040 to your computer and use it in GitHub Desktop.
function log() {
var i, message = [];
for (i = 0; i < arguments.length; i++) {
message.push(arguments[i]);
}
$('pre').append(message.join(' ') + '\n');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment