Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If you use console.log() with out checking for its existence it breaks the code in IE. Once you go into debug it using the debugger....it begins to work masking the actual issue.

Because of this Catch-22 you never get to see the actual fail.

This is not a problem in Safari, Chrome, and Firefox.

Where can I file this as a bug ( a very ambiguous one ) and why does IE do this?

share|improve this question
1  
If we started asking why IE did every thing it did wrong wrong... – Xeon06 Jul 17 '12 at 15:46
2  
A Bug in a Microsoft Product? Never! heh. – John Mitchell Jul 17 '12 at 15:46
2  
<rant>This is because IE is a terrible product, and their team forgot that people actually need to develop for it. Their dev tools were first created in IE6, and haven't been updated at all since. I know in old versions of IE, the console only existed with the dev tools opened, no one knows why. I think the IE team is just trying to make people's lives miserable.</rant>. – Rocket Hazmat Jul 17 '12 at 15:49
1  
@HiroProtagonist This is fixed in IE10, I've just tested it. – duri Jul 17 '12 at 15:51
If I remember correctly, this happened in old Firefox too (v. 3.6?) – Inkbug Jul 17 '12 at 15:52
show 11 more comments

closed as not constructive by duri, Kolink, epascarello, j0k, bažmegakapa Jul 18 '12 at 9:55

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

I don't experience this problem. console.log works just fine even when the console has never been opened.

However, in older versions of browsers, without a console, you can always shim it:

console = console || {log:function() {
    var l = arguments.length, i, arr = [];
    for( i=0; i<l; i++) arr[i] = arguments[i];
    alert(arr.join("\n"));
}};
share|improve this answer
I just tested it on IE8 and IE9....I tested it w/ and w/ out to verify the error.... – livingston_mechanical Jul 17 '12 at 15:49
You are plain wrong. – livingston_mechanical Jul 17 '12 at 15:51
I know in IE8, if you don't have the dev tools opened, console is undefined so, console.log will throw an error and stop the JavaScript from executing. – Rocket Hazmat Jul 17 '12 at 15:52
Well, whether I am right or wrong, the shim can still be used just fine as a console substitute. But to be honest you should have the console open if you are attempting to debug using console.log anyway, and you should never leave any console.log calls in production. – Kolink Jul 17 '12 at 15:54
2  
+1 for pasting code that works and not presenting any opinions or starting argument. But please rather use window.console = window.console || { log: ... because it relies on undeclared assignment, see perfectionkills.com/onloadfunction-considered-harmful – duri Jul 17 '12 at 16:11

Not the answer you're looking for? Browse other questions tagged or ask your own question.