Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
labelmark:  
for(x=0; x<6; x++)  
{  
console.log("The value of x is : " +x)
 
if(x==3)  
{  
break labelmark;  
}  
}  
console.log("The value of x is : " +x)
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x