How to show on multiple values

I have a div I would like to show if current status is 2 or 3
I have tried the code below but this is not working

dmx-show="(selected_details.data.info[0].currentStatus == 2)+’ || '+(selected_details.data.info[0].currentStatus == 3)"

Any suggestions where I am going wrong

The correct syntax is:

dmx-show="selected_details.data.info[0].currentStatus == 2 || selected_details.data.info[0].currentStatus == 3"

cheer @Teodor that worked :slight_smile: