In 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;
};
}
```

rectangleA is ______.
A. an object
B. a constructor function


B. a constructor function

Computer Science & Information Technology

You might also like to view...

Which of the following portable apps is a browser?

A. Thunderbird B. LibreOffice Portable C. Firefox D. FileZilla

Computer Science & Information Technology

Discuss operational auditing.  Include in your discussion what should be looked for in an operational audit and what methods might be used in the audit.

What will be an ideal response?

Computer Science & Information Technology

When you extrude an object, you create a ____ dimension.

A. third B. baseline C. fourth D. single

Computer Science & Information Technology

A ____ consists only of a function header.

A. function body B. function header C. function declaration D. formal parameter list E. actual parameter list

Computer Science & Information Technology