Skip to content

Instantly share code, notes, and snippets.

@daubattu
Last active December 6, 2019 04:32
Show Gist options
  • Save daubattu/0761ee09bd85c89cae6c57aca1ba8985 to your computer and use it in GitHub Desktop.
Save daubattu/0761ee09bd85c89cae6c57aca1ba8985 to your computer and use it in GitHub Desktop.
// Written as of ES2019
if (onError) { // Testing if onError really exists
onError();
}
// Using optional chaining with function calls
onError?.(); // no exception if onError is undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment