Returns the smallest number in the given arguments.
Accepts int and float.
min(value1, value2, ...)
values (int | float) - Two or more numeric values.
int | float
Integer values
min(1, 2, 3) // 1
Float values
min(3.14, 2.72, 1.41) // 1.41
From an array using spread
[5, 3, 8, 1].min($this...) // 1
CLI usage
Last updated 3 months ago
$ echo '{"scores": [88, 72, 95, 64]}' | dasel -i json 'scores.min($this...)' 64