Development JavaScript Tutorial

< html>

Debug Example

  function assert(bCondition, sErrorMessage) {
      if (!bCondition) {
          alert(sErrorMessage);
          throw new Error(sErrorMessage);
      }
  }
  function aFunction(i) {
      assert(false, "1==2");
  }
  aFunction(1);



    

This page uses assertions to throw a custom JavaScript error.