JSFiddle - React, Tailwind, and code Playground
by nveron
HTML
<div id="toto"></div>
JavaScript
var titre = 'qsdf $0 qsdf $1 $2';
var vals = ['bla', 'blo', 'blu'];
var newTitre = vals.reduce(function (titre, val, index) {
return titre.replace('$' + index, val);
}, titre);
document.getElementById('toto').innerHTML = newTitre;