JS: Execute multiple other cases inside of a case

So it is possible to fall-through the case to another case:

switch(variable) {
  case 1:
    // do something 1
  case 2:
    // do something 2
    break;
  case 3:
    // do something 3
    break;
}

But what if we would want to execute multiple other cases after finishing the main case, or execute other case that is not directly after the main case?
Pseudocode for example:

switch(variable) {
  case 1:
    // do something 1
    break;
  case 2:
    // do something 2
    break;
  case 3:
    // do something 3
    execute case 2;
    execute case 1;
    break;
}

I’ve researched the option of labeled statements, but it’s not gonna work here it seems.
The only option I see here is to create new function for every case, but I’m wondering – is there better, cleaner, more readable and/or shorter option?

I’m looking for all tips – be it some keyword I’m missing, your personal tips to do it cleanly, or libraries and even propositions from other languages like typescript etc.