Skip to content

Instantly share code, notes, and snippets.

@poemdexter
Forked from andreruffert/log.js
Created May 7, 2012 14:44
Show Gist options
  • Save poemdexter/2628164 to your computer and use it in GitHub Desktop.
Save poemdexter/2628164 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