I have a for loop that logs the coordinate array of each feature in my feature layer. Oddly, however, the 33rd element of the feature layer is an array of 3 arrays - with lengths 16, 58, and 246. How can I access these arrays which are one level deeper - and log them to the console as well?
if (data.features.length > 0) {
for(var i = 0; i < features.length; i++){
console.log(i, features[i].geometry.coordinates)
}
}
