What’s the best way to break from nested loops in JavaScript?

What’s the best way to break from nested loops in Javascript? //Write the links to the page. for (var x = 0; x < Args.length; x++) { for (var Heading in Navigation.Headings) { for (var Item in Navigation.Headings[Heading]) { if (Args[x] == Navigation.Headings[Heading][Item].Name) { document.write(“<a href=\”” + Navigation.Headings[Heading][Item].URL + “\”>” + Navigation.Headings[Heading][Item].Name + “</a> : … Read more