Last active
August 29, 2015 14:00
-
-
Save sethmcl/5cbcaf6e8b62c0b46425 to your computer and use it in GitHub Desktop.
output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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