Hi folks I have the following array
const options = [
'option one',
'option two',
'some other random string',
'another random string',
'option last one',
]
If I want to remove something from the middle of this array which also update the indexes, I tried delete arr[ind] but that does not update the index. Want to completely remove from that array.
Regards