cjmling / findings

Notes on stuff i finds worth keeping for quick reference later on.
2 stars 0 forks source link

Object is of type 'unknown' try catch #314

Open cjmling opened 2 years ago

cjmling commented 2 years ago

Change from

} catch (error) {
      console.log(error.message);
    }

to

} catch (error: any) {
      console.log(error.message);
}

try catch object of type unknown