I need to test a JavaScript Project that uses console-object. So i downgrade from IE10 down to IE8 but i am not sure that my environment-testcases are "safe" for others.
This How can I use console logging in Internet Explorer? sais the console is undefined without Developertools(F12). But my current experience is that console.log is always available, no matter what F12 is active or not.
This article sais, they are fully enabled. This article sais console is undefined in IE8.
It looks like IE8 != IE8. Isnt it enougth to test pages in IE, Firefox, Opera and Safari?
<html>
<body>
<script>
document.write('Console is <b>' + typeof console + '</b>! <br />');
document.write('Even console.log is <b>' + typeof console.log + '</b>!<br />');
document.write(window.navigator.userAgent);
</script>
</body>
</html>