I want to declare a variable inside a template literal and use it in the same template later is that possible? If this is not possible it seems like a missing feature to me.
const tmp = tag`
some random text, ${let myvar = 55} more text,
even more text ${myvar}
`
${item + index}