I have a bunch of console.log() calls in my JavaScript.
console.log()
Should I comment them out before I deploy to production?
I\'d like to just leave them th
A nice one-liner:
(!console) ? console.log=function(){} : console.log('Logging is supported.');