Which method facilitates in uploading a Blob to a server?
A
send()
B
pass()
C
upload()
D
store()
Correct Answer: send()
The Blob() constructor allows one to create blobs from other objects. You can upload a Blob to a server by passing it to the send() method of an XMLHttpRequest object.