If I create multiple new blobs:
var myBlob1 = new Blob(['Hello world!'], {type: 'text/plain'});
var myBlob2 = new Blob(['Very cool!'], {type: 'text/plain'});
var myBlob3 = new Blob(['I love AI!'], {type: 'text/plain'});
How can I list them all in Chrome Dev Tools (or in plain javascript) to expose all the blobs and get all the information? So the result I'm requiring is somehow:
var blobs = getBlobs(); // [myBlob1, myBlob2, myBlob3]
let blobCollection = []; blobCollection.push(new Blob(['Sup?']), {type: 'text/plain'});
– Wetnurse