Скрипт Java удаляет первые три индекса

var indexToRemove = 0;
var numberToRemove = 1;

arr.splice(indexToRemove, numberToRemove);
Thoughtful Trout