How batch modify, batch delete?

for(var i=0;i<delNoticeIds.Count;i++) {
    var nObj = Backendless.Persistence.of(Classes.Notice).findById(delNoticeIds.Values());
    nObj.IsDel = true;
    nObj.save(new Backendless.Async(function () {
    }));
}

See the section “bulk update” here:

https://backendless.com/documentation/data/rest/data_updating_data_objects.htm

and “bulk delete” here:
https://backendless.com/documentation/data/rest/data_deleting_data_objects.htm

Thank