2
I want to use a variable number and create multiple identical SVG objects. Just change their position and name in Javascript.
As in the loop for
exemplified in the pseudo-code:
for(i=0; i<variavel; i++){
<circle title=circle cx="250" cy="250" r="5" stroke="black" stroke-width="2" fill="green" />
}