Umm is there anyone here that wouldn't mind giving sum halp to hope in javascript?
Im messing up the most basic of things since i took a looooong break from it..
So umm, firstly.. i can't get the double "for" loop to work.
Im messing up the most basic of things since i took a looooong break from it..
So umm, firstly.. i can't get the double "for" loop to work.
Code:
for(var i = 0;i < 700; i+=100){
var nomy = i;
for(var v = 0;v < 700; v+=100){
var nomx = v;
ctx.fillRect(nomx, nomy, nomx+100; nomy+100);}
}