Created
June 3, 2016 13:22
-
-
Save Baudin999/fa694b1a402fb982f708f92042535cab to your computer and use it in GitHub Desktop.
JSFiddle console.log override:
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
document.getElementById('element').innerHTML = ""; | |
console.log = function(...m) { | |
document.getElementById('element').innerHTML += m.reduce((_m, _a) => _m + _a, ""); | |
document.getElementById('element').innerHTML += "<br />"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment