Microsoft® JScript™
break Statement
Language Reference |
Version 1 |

See Also


Description
Exits from the current loop.
Syntax
break;
Remarks
You can use the break statement only inside a while, for, or for...in loop. Executing the break statement exits from the current loop, and begins script execution with the statement immediately following the loop.


© 1997 Microsoft Corporation. All rights reserved.