Javascript的assert()

function assert(bCondition, sErrorMsg) {
       if (!bCondition) {
             alert(sErrorMsg);
             throw new Error(sErrorMsg);
       }
}
posted @ 2009-06-12 23:56  Skyman  阅读(2756)  评论(1编辑  收藏  举报