# JSON.NUMMULTBY

> Multiply the number value stored at `path` by number.

## Arguments

<ParamField body="key" type="string" required>
    The key of the json entry.
</ParamField>
<ParamField body="path" type="string" required>
    The path of the array. `$` is the root.
</ParamField>




<ParamField body="multiply" type="number" required>
    The number to multiply by.
</ParamField>


## Response

<ResponseField type="integer[]" required>
  The new value after multiplying
</ResponseField>

<RequestExample>
```ts Example
const newValue = await redis.json.nummultby("key", "$.path.to.value", 2);
```
</RequestExample>
