Skip to content

Instantly share code, notes, and snippets.

@sethmcl
Last active August 29, 2015 14:00
Show Gist options
  • Select an option

  • Save sethmcl/5cbcaf6e8b62c0b46425 to your computer and use it in GitHub Desktop.

Select an option

Save sethmcl/5cbcaf6e8b62c0b46425 to your computer and use it in GitHub Desktop.
output
function log() {
var output = Array.prototype.slice.call(arguments, 0).join(' ');
var div = document.createElement('div');
div.innerText = output;
document.body.appendChild(div);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment