Skip to content
dreamcode
dreamcode
Lesson
Practice · Error handling
  1. Predict
  2. Arrange
  3. Fill in
+20 XP on finish
PREDICT · READ BEFORE YOU WRITE

What order of messages is printed to the console?

Trace the program the way the computer would, then make your call before running anything.

const analyzeWeather = () => {
  try {
    console.log('Trying');
    throw new Error('Storm');
    console.log('Sunny');
  } catch (err) {
    console.log(err.message);
  } finally {
    console.log('Done');
  }
};
analyzeWeather();