“Essayez enfin Catch en JavaScript” Réponses codées

Essayez Catch in JavaScript

try {
  // Try to run this code 
}
catch(err) {
  // if any error, Code throws the error
}
finally {
  // Always run this code regardless of error or not
  //this block is optional
}
Batman

Essayez enfin Catch en JavaScript

try { // Try to run this code
  alert( 'try' ); 
  if (confirm('Make an error?')) BAD_CODE();
} catch (e) { // Code throws error
  alert( 'catch' );
} finally { // Always run this code regardless of error or not
  alert( 'finally' );
}
Mozammil Akhtar

Essayez enfin Catch en JavaScript

try {
  alert( 'try' );
  if (confirm('Make an error?')) BAD_CODE();
} catch (e) {
  alert( 'catch' );
} finally {
  alert( 'finally' );
}
Creepy Gábor

Réponses similaires à “Essayez enfin Catch en JavaScript”

Questions similaires à “Essayez enfin Catch en JavaScript”

Plus de réponses similaires à “Essayez enfin Catch en JavaScript” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code