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);
You might also like to view...
The Report Wizard allows you to add grouping levels to the report.
Answer the following statement true (T) or false (F)
The Election service must ensure that a vote is recorded whenever any user thinks they have cast a vote. Discuss the effect of maybe call semantics on the Election service. Would at-least-once call semantics be acceptable for the Election service or would you recommend at-most-once call semantics?
What will be an ideal response?
Webmail is a free service accessed using a browser, but its services cannot be accessed using Microsoft Outlook.
Answer the following statement true (T) or false (F)
What is a consequence of using open-source software?
a. piracy b. expenses c. no support d. lack of marketing