Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 814 Bytes

how_to_catch_errors_in_callbacks.md

File metadata and controls

24 lines (18 loc) · 814 Bytes

How to catch errors in callbacks

When working with callbacks, ensure that errors are passed as the first argument to the callback function.

function performAsyncOperation(callback) {
  // Simulate error
  const error = new Error('Something went wrong');
  callback(error, null);
}

performAsyncOperation((error, result) => {
  if (error) {
    return console.error('Callback error:', error);
  }
  console.log(result);
});

Tags: intermediate, JavaScript, Callbacks, Error Handling

URL: https://www.tiktok.com/@jsmentoring/photo/7458362542088277281