delete(array, value) {
const index = array.indexOf(value);
return [...array.slice(0, index), ...array.slice(index + 1)]
}
For further actions, you may consider blocking this person and/or reporting abuse
delete(array, value) {
const index = array.indexOf(value);
return [...array.slice(0, index), ...array.slice(index + 1)]
}
For further actions, you may consider blocking this person and/or reporting abuse
Gladiators Battle -
AK DevCraft -
TeamStation AI -
Sonay Kara -
Top comments (0)