Expand Minimize

SPC058903: Consider to not use empty labels

Consider to not use empty labels, goto is not supported in ECMAScript

CheckId SPC058903
TypeName NoEmptyLabels
Severity Warning
Type JavaScriptFile

Bad Practice

labeled:
    var x = 10;
};

Good Practice
labeled:
    for (var i=10; i; i--) {
      var foo = doSomething(i);
      if(foo == i) continue outer;
    }};

Disclaimer: The views and opinions expressed in this documentation and in SPCAF do not necessarily reflect the opinions and recommendations of Microsoft or any member of Microsoft. SPCAF and RENCORE are registered trademarks of Rencore. All other trademarks, service marks, collective marks, copyrights, registered names, and marks used or cited by this documentation are the property of their respective owners.