Workshop.codes
Create

Array Min Last updated September 11, 2024

Description

Returns the smallest numeric value in a specified array. Non-numeric elements are ignored. Returns 0 for an empty array. Useful for identifying the lowest score, the least healthy player in a sampled set, or the minimum value in a dynamically populated dataset.

Snippet

Array Min(Global.ScoreArray);

Properties

Returns: Number
Parameters: Array

Array
Type: Array, Default: Empty Array
The array from which the minimum value will be returned.

Workshop.codes