we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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}