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

For the following code in Javavscript:

// add HTML to container
// show the container on the DOM
// call a non-existent function on an object

I successfully see Firefox and IE display my HTML. The third line of code, which shows a JS error in Firebug and IE, appears to be suppressed/ignored.

Do browsers generally ignore bad JS? Or, let's say I added alert("line 4"); after my 3rd line of code. Would the 4th line be ignored since JS interpretation would end on the illegal JS line of code?

I tested my scenario in jsFiddle, but I'm not sure if jsFiddle behaves in the same way as a browser.

share|improve this question
2  
bad js kills the entire <script> block. there's (thankfully) no equivalent of VB's on error resume next. – Marc B Jan 10 at 16:06
@MarcB, how can that be true if I see my HTML display for a block of JS that includes a function call on an object that doesn't have that function? – Kevin Jan 10 at 16:07
1  
because js won't reach back in time to undo stuff that was done in a script block before the error occurred. the dom manipulation will still have occured, but once you hit the error line, execution stops and that script block is effectively dead. – Marc B Jan 10 at 16:09
When javascript runs into an error, it will raise an exception. You can handle the exception, but by default the only thing that happens is that the exception gets logged in the console. – Martijn Jan 10 at 16:10
ahhh.. so in my above example, alert("line 4") would not get called since the line above it (#3) would've stopped JS execution – Kevin Jan 10 at 16:11

1 Answer

up vote 2 down vote accepted

The JavaScript engine will execute code until it reaches an Exception. The behaviour then changes depending on the following:

  • If it is in a try..catch, execution will resume from catch, otherwise
  • If it is invoked asynchronously this sequence will end at that point but other ongoing ones will continue. (A simple example is with window.setTimeout)
  • If it is directly in a <script>, the rest of the code in the <script> from that point will not execute, but code in following <script>s will.

If the Exception occurs in something that gets hoisted, then think of the point of execution as being on line 0.

You can test what happens easily using the throw keyword. For example

console.log(1); // logs
console.log(2); // logs
throw 'eep';
console.log(4); // does not log
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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