+ 3
[Solved] Q. Please figure out the mistake over here.
2 Respuestas
+ 6
Line 32, 33 :
for(let i = 0; i >= 10; i++) {
let pts = new particle(i, i)
_______________________________
for(let i = 0; i <= 10; i++) {
let pts = new particle(i*40, i*40)
+ 3
Thank you so much SAN once again for helping. ❤🤩