Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function Square() {
  2. let a = Math.floor(Math.random() * 501);
  3. let b = Math.floor(Math.random() * 501);
  4. let d = Math.floor(Math.random() * 101);
  5.  
  6. this.x = a;
  7. this.y = b;
  8. this.d = d;
  9.  
  10. this.draw = function(c) {
  11. c.fillStyle = "red";
  12. c.fillRect(this.x, this.y, this.d, this.d);
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement