最佳答案
Documentation: https://developer.mozilla.org/en-US/docs/Web/API/FileList
Why is FileList an object rather than an array? The only property it has is .length and the only method it has is .item(), which is redundant (fileList[0] === fileList.item(0)).