Which two terms represent interfaces in the File API? (Choose two.)
The File Interface
This interface describes a single file in a FileList and exposes its name. It inherits from Blob.
IDL
[Constructor(Blob fileBits, [EnsureUTF16] DOMStringfileName)]
interface File : Blob {
readonly attribute DOMString name;
readonly attribute Date lastModifiedDate;
};
Currently there are no comments in this discussion, be the first to comment!