Blob Objects
xxxxxxxxxx
%%html
<div id='div002_02'></div>
<script>
function FromArrayToURL(dataArray,arrayType) {
return URL.createObjectURL(new Blob([dataArray.buffer],
{type:arrayType}))};
const L=new Uint8Array(26);
for (let i=0; i<26; i++) {L[i]=65+i;}
const url=FromArrayToURL(L,'text/plain'),
link=document.createElement('a');
link.href=url;
link.innerText='😋 😌 😍 😎 😏 ARRAY URL 😋 😌 😍 😎 😏';
const out2=document.querySelector('#div002_02');
out2.style.border='double white';
out2.style.background='black';
out2.style.width='15%'; out2.style.padding='10px';
out2.appendChild(link);
No comments:
Post a Comment