ciklas pačiame template literals
template-literals
ciklas pačiame template literals
let iReal = 5;
const markup = `
${Array(41).fill().map((item, i) => `
${i > 0 ? `<div class="W${i * iReal}px"><code>.W${i * iReal}px</code></div>` : ``}
`).join('')}
`;