JSFiddle - React, Tailwind, and code Playground
HTML
<div id="result"></div>
JavaScript
fetch('https://httpbin.org/encoding/utf8')
.then(response => {
alert('before');
alert(response.body);
});
<div id="result"></div>
fetch('https://httpbin.org/encoding/utf8')
.then(response => {
alert('before');
alert(response.body);
});