Hello I'm using node js v12.10 and the following code don´t work properly
let number = 0x10
switch(number){
case 0x10:
console.log('0x10')
case 0x16:
console.log('0x16')
break
default:
console.log(number)
break
}
the output is: 0x10 0x16
I know that I forget the break instruction on case 0x10, but still the case 0x16 should not be executed. Is that a bug?