JavaScript에 디버깅 코드를 추가하려면 프로그램에서 alert() 또는 document.write() 메서드를 사용하십시오. 예를 들어,
var debugging = true; var whichImage = "widget"; if( debugging ) alert( "Calls swapImage() with argument: " + whichImage ); var swapStatus = swapImage( whichImage ); if( debugging ) alert( "Exits swapImage() with swapStatus=" + swapStatus );
표시되는 alert()의 내용과 순서를 검사하면 프로그램의 상태를 매우 쉽게 검사할 수 있습니다.