73
Comments
  • 2
    Fuck yea I can too!
  • 0
    const doSomething = (thing) => {
    try { thing() } catch (notWorkExc){
    doSomething (notWorkExc.notThis);
    }}

    doSomething(() => {
    console.log("just if else lol");
    });
Add Comment