Skip to main content

Min Array

This node finds the minimum value in an array of numbers or strings.

The Min Array node can find the smallest numeric value or the alphabetically first string in an array, with support for object arrays.

Similar to Max Array but finds the minimum value instead. For numeric arrays, it returns the mathematically smallest number. For string arrays, it returns the alphabetically first string.

Inputs

Input

DataDescription
ArrayThe array to process (numbers, strings, or objects)

Object Options

DataDescription
Key PathPath to extract values from objects (required for object arrays)

Actions

SignalDescription
DoTriggers the minimum calculation

Outputs

DataDescription
MinimumThe minimum value found in the array
SignalDescription
DoneTriggered when the calculation is complete

Usage

Example Use Cases

  1. Data Analytics: Find lowest values, minimum prices, or bottom performance
  2. Quality Control: Identify minimum acceptable values
  3. Game Development: Determine lowest damage, minimum level requirements
  4. Resource Planning: Find minimum available resources

Examples

Array TypeExample InputResult
Numbers[1, 5, 3, 9, 2]1
Strings["apple", "zebra", "banana"]"apple"
Objects[{val: 10}, {val: 25}, {val: 5}]5 (with Key Path: "val")