Will return in try trigger finally?

Yes.

const foo = () => {
  try {
    console.log('try');

    return;
  } catch (error) {
    console.log('error');

    return;
  } finally {
    console.log('finally');
  }
};


foo();

// try
// finally
© 2019 Hau Chen