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
this seems to work for me...
if (!window.console) { window.console = { log: function () {}, group: function () {}, error: function () {}, warn: function () {}, groupEnd: function () {} }; }