---
url: /cube-functions/sqrt.md
description: Returns the positive square root of a numeric value
---

# SQRT

Returns the positive square root of a numeric value

```js
SQRT(input_number)
```

#### Parameters

* `input_number` - The number input.

#### Examples

```js
SQRT(16)
```

**Result:** `4`
