Skip to content

Instantly share code, notes, and snippets.

@micha-alt
micha-alt / links.md
Last active June 20, 2017 15:07
Linkliste Web Frontend Development
@micha-alt
micha-alt / logging.js
Created December 12, 2012 13:44
Logging to console or an element with id 'output'.
(function(){
this.log = function(msg) {
var output = document.getElementById('output');
if( output !== null ) {
output.innerHTML += msg + "\n";
} else {
this.console.log(msg);