Min

This Flow Script tutorial explains how to use the Min function with syntax and examples.

Description

The Min function returns the lesser of a and b.

Syntax

‌The syntax for the Min function is:

Min(a, b)

Parameters

a - the first value to compare

b - the second value to compare

Returns

‌The Min function returns a numeric value.

Example

Let's look at some Min function examples and explore how to use the Min function.‌

Min(1, 2)
Result: 1

Last updated