showing results for - "runtime error js example"
Lya
07 Oct 2016
1<script type = "text/javascript">
2   <!--
3      try {
4         // Code to run
5         [break;]
6      } 
7      
8      catch ( e ) {
9         // Code to run if an exception occurs
10         [break;]
11      }
12      
13      [ finally {
14         // Code that is always executed regardless of 
15         // an exception occurring
16      }]
17   //-->
18</script>