“Intenta atrapar finalmente en JavaScript” Código de respuesta

Intenta atrapar en 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

Intenta atrapar finalmente 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

Intenta atrapar finalmente en JavaScript

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

Respuestas similares a “Intenta atrapar finalmente en JavaScript”

Preguntas similares a “Intenta atrapar finalmente en JavaScript”

Más respuestas relacionadas con “Intenta atrapar finalmente en JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código