JavaScript

  1. Home
  2. Computing & Technology
  3. JavaScript

Finally

By Stephen Chapman, About.com

Definition: The finally statement defines a block of code that will always be run after the completion of the preceding try block. The finally block will always be run even when an error occurs and control is passed to a catch block. The finally block will be run immediately after any catch block. Finally is a reserved word and cannot be used for anything other than declaring a final error handler for a try block.
Examples: finally {throw e}

Explore JavaScript

About.com Special Features

JavaScript

  1. Home
  2. Computing & Technology
  3. JavaScript
  4. Reference
  5. Javascript Glossary - Finally

©2009 About.com, a part of The New York Times Company.

All rights reserved.