Let's look at the MDN documentation for the Fetch API. Fetch lets you grab data from your local computer or other computers on the Internet in a standardised way. Fetch demonstrates the use of Promises and is an asynchronous function - it executes outside of the normal draw loop in p5.js.
Quoting from MDN: "The WebSocket API is an advanced technology that makes it possible to open a two-way interactive communication session between the user's browser and a server. With this API, you can send messages to a server and receive event-driven responses without having to poll the server for a reply."
This means you can ask for some data from the server (or send it), and specify a function in your code to run when the reply comes in, while the rest of your code is running.
Before these kinds of technologies, code would have to constantly ask again and again (or "poll") for information. Causing lots of unnecessary network traffic and making the code much more complicated.
5. What is Socket.io? Building a shared canvas, building a chat room.
Socket.io is a JavaScript library made by Automattic (also makers of WordPress) that relies on WebSocket, but adds lots of useful features, like being able to broadcast to multiple sockets at once.
Someone should make that last one work for mobile devices - message me on Slack if you are interested in doing that. How would you go about that? Let's discuss it.