Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <b>Content-type: </b><span>…wait for it…</span>
</body>
</html>
 
var output = document.querySelector('span');
fetch('https://enable-cors.org/').then(function(response) {
  return response.blob();
}).then(function(blob) {
  output.innerText = "'" + blob.type + "'";
}).catch(function(error) {
  output.innerText = 'Error: ' + error.message;
  console.log(error);
});
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
dahjellepro
0viewers