Chack var existe pour une erreur de saut sur JavaScript

try{

//code that causes an error

}catch(e){

functionToHandleError(e);
}
//continue from here
Rays