# PRODUCT

The PRODUCT function accepts a series of values, multiplies them, and returns a number.

## Syntax

```javascript
product(value1,value2...valueN)
```

## Arguments

value1, value2 – Can be numbers or node references.

## Example

Use the product function to calculate the sale price as shown.

```
PRODUCT(Cost * Units sold)
```
