I am a new Google Earth Engine user. I am trying to remove some images of an image collection. In the example below is a example. My image collection has more images.
// Load Landsat 8 brightness temperature data for 1 year.
var test = ee.ImageCollection('LANDSAT/LC8_L1T_32DAY_TOA')
.filterDate('2012-12-25', '2016-12-25')
.select('B1');
print(test)
My image collection has 45 images. To be clear, I will call index1 my first image and index45 my last image, etc. How could I keep or remove the images from index10 to index 15 and from index30 to index40.
I tried with a list but it does not work to capture the elements.