Fire and forget JavaScript post request

How can I make a post request in JavaScript in a fire and forget way
I don’t need a response, I want it to work without waiting
Any help is appreciated

JavaScript doesn’t wait, fetch is asynchronous. It keeps going, that’s why we have to use callbacks or promises.

You can just omit a callback or a then chain if you have no actions for the result.

Thanks Kevin, it was helpful, I just did this