showing results for - "how to move an ellipse along the x axis in javascript"
Anna
22 Oct 2019
1let x = 10;
2function draw(){
3  background(200);
4 ellipse(x,200,30,30);
5  x=x+2;
6}