console.log arguments
Set CSS argument for console.log
by Oliver Kelso
JavaScript
function oliLog(test){
console.log('%c'+ test, 'background:yellow;color:green;');
}
oliLog('testing');
by Oliver Kelso
function oliLog(test){
console.log('%c'+ test, 'background:yellow;color:green;');
}
oliLog('testing');