Catch-22

    <script type="text/javascript">
    function movieStart()
    {
        int count = 0;
        int max = 22;
        Object o = null;
   
        try {
            o.dosomething();
        } catch() {
              count++;
              if(count==max)  print("Catch-22")
        }
    }
    </script>
Vote up this code0
  • Joekool

    int? should be var