J'ai une boucle que je veux quitter; comme ça:
function MyFunction() {
for (var i = 0; i < SomeCondition; i++) {
if (i === SomeOtherCondition) {
// Do some work here
return false;
}
}
SomeOtherFunction();
SomeOtherFunction2();
}
Le problème est qu'après l'exécution des instructions Do some work here
, je veux quitter la boucle for mais toujours exécuter les SomeOtherFunctions();
L'instruction return false quitte la boucle for mais elle quitte également la fonction entière. Comment puis-je réparer ça?
Merci.