“Nouveau Javascript Blob” Réponses codées

Comment créer un javascript blob

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

Nouveau Javascript Blob

//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

Réponses similaires à “Nouveau Javascript Blob”

Questions similaires à “Nouveau Javascript Blob”

Plus de réponses similaires à “Nouveau Javascript Blob” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code