Javascript scope variable to switch case?
some alternative: /* curly braces inside the case */ const i = 1 switch (i) { case 0: { let x = 2342; let s = 1 + x; console.log(x+’ & ‘+s+’ from inside’); } break; case 1: { let x = 2342; let s=”b”; console.log(x+’ & ‘+s+’ from inside’); /* 2342 & b from … Read more