Given the code below
```
function Rectangle(x, y)
{
this.x = x;
this.y = y;
this.width = 40;
this.height = 20;
this.moveDown = function ()
{
this.y += 5;
};
}
```
write a statement to create a Rectangle object named rectangleA with x=200 and y=10
var rectangleA = new Rectangle (200, 10);
Computer Science & Information Technology
You might also like to view...
Links to websites or files located on your computer are stored using the ________ data type
Fill in the blank(s) with correct word
Computer Science & Information Technology
Which of the following are private IP networks?
A) 172.48.0.0 B) 172.27.0.0 C) 192.168.25.0 D) 192.167.36.0
Computer Science & Information Technology