“cara membuat javascript gumpalan” Kode Jawaban

cara membuat javascript gumpalan

new Blob([`${/*this part declares the value*/'<h1>Hello</h1><style>h1:after{content:"world!"}</style>'}`], {
    type: 'text/html'
})
Mais Inc

JavaScript gumpalan baru

//The Blob() constructor returns a new Blob object. The content of the blob
//consists of the concatenation of the values given in the parameter array.

const obj = {hello: 'world'};
const blob = new Blob([JSON.stringify(obj, null, 2)], {type : 'application/json'});
Undefined

Jawaban yang mirip dengan “cara membuat javascript gumpalan”

Pertanyaan yang mirip dengan “cara membuat javascript gumpalan”

Lebih banyak jawaban terkait untuk “cara membuat javascript gumpalan” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya