Skip to content

Instantly share code, notes, and snippets.

@andrewmmc
Last active April 5, 2018 16:16
Show Gist options
  • Save andrewmmc/d21286de011dd2569b88a6c5a7cf2b8b to your computer and use it in GitHub Desktop.
Save andrewmmc/d21286de011dd2569b88a6c5a7cf2b8b to your computer and use it in GitHub Desktop.
Nested Try-catch Blocks
try {
    throw new Error()
    console.log('A')
    try {
        console.log('B')
    } catch (e) {
        console.log('C')
    }
} catch(e) {
    console.log('D')
} finally {
    console.log('E')
}

Console Output:

> D
> E

try {
    // throw new Error()
    console.log('A')
    try {
        console.log('B')
    } catch (e) {
        console.log('C')
    }
} catch(e) {
    console.log('D')
} finally {
    console.log('E')
}

Console Output:

> A
> B
> E

(_ => {
    try {
        throw new Error();
        return 0;
    } catch (e) {
        return 1;
    } finally {
        return 2;
    }
})();

Returned:

2

如果从finally块中返回一个值,那么这个值将会成为整个try-catch-finally的返回值,无论是否有return语句在try和catch中。这包括在catch块里抛出的异常。

References: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/try...catch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment