how to make animation for whole for loop in js?
for (var n = 0; n < lessons.length; n++) {
var j = n % 2 + 2;
layer.add(new Konva.Circle({
name:""+lessons[n].id,
x: x + (n * 90),
y: y * j,
sides: 6,
radius: 50,
fill: 'red',
stroke: 'black',
strokeWidth: 4,
text: lessons[n].title,
}));