• Karyoplasma
    link
    fedilink
    arrow-up
    15
    ·
    edit-2
    1 month ago

    Starting with Java 21 (I think), they’ve introduced ignored variables, so you can now actually do this:

    try {
        operation();
    } catch (Exception _) {
        // nice weather, eh?
    }
    

    Edit: forgot that this is about JS lel