> For the complete documentation index, see [llms.txt](https://docs.angular-package.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.angular-package.dev/range-1/range/properties/min.md).

# min!

## `Range.prototype.min`

The `min` read-only property is the minimum range of generic type variable [`Min`](/range-1/range/generic-type-variables.md#range-less-than-min-max-step-greater-than) of a specified [`Range`](/range-1/range/overview.md) object.

{% code title="range.class.ts" %}

```typescript
public readonly min!: Min;
```

{% endcode %}

### Type

#### [<mark style="color:green;">`Min`</mark>](/range-1/range/generic-type-variables.md#range-less-than-min-max-step-greater-than)

## Example usage

```typescript
// Example usage.
import { Range } from '@angular-package/range';

// Create new instance.
// Returns Range {min: 4, max: 27} of Range<4, 27, 1>.
const range = new Range(4, 27);

// Returns 4 of type 4.
range.min;
```
