how to send string in request body code example
Example 1: axios put request
const res = await axios.put('https://httpbin.org/put', { hello: 'world' });
res.data.headers['Content-Type'];
Example 2: js add body data to put request
fetch(url, {
method: 'PUT',
body: "any type of data"
});