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...

A technician installs a new high-end gaming card into a computer but is not seeing any video. Which of the following power connectors did the technician MOST likely forget to install?

A. 4/8-pin 12v B. 6/8-pin molex C. 20-pin main D. 24-pin main

Computer Science & Information Technology

For apps you submit to the Google Play store, the ________ is used as the app’s unique identifier.

a. app name b. class name c. package name d. folder name

Computer Science & Information Technology