Skip to content

Instantly share code, notes, and snippets.

@Bogidon
Created September 16, 2015 14:53
Show Gist options
  • Save Bogidon/d0ca80db77784b5e4450 to your computer and use it in GitHub Desktop.
Save Bogidon/d0ca80db77784b5e4450 to your computer and use it in GitHub Desktop.
JS Fiddle Console JS
console = {
log: function (text) {
var div = document.getElementById('console-log');
var p = document.createElement("p");
p.innerHTML = text;
div.appendChild(p);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment