I have a loop in Javascript, I want to run console.log() in a specific iteration, and then terminate. What is the best method to go about doing this?
I'm wanting something like Perl's
die Dumper \@foo;
|
I have a loop in Javascript, I want to run I'm wanting something like Perl's
| |||||
feedback
|
|
You can throw an exception:
Not exactly the same, but (in my experience) it's not too common to see exception handling in ordinary DOM-wrangling sorts of JavaScript code, so that usually will blow out of any event loop. However, it's not really the same thing as any surroundling | |||
|
feedback
|
|
you mean terminate loop?
the but there is no | |||||
|
feedback
|
|
Since JavaScript is event-based, a script doesn't control when it terminates — there's no If it's not one already, the best option is to refactor the code into a function that you can
| ||||
|
feedback
|