Skip to content
Joachim Stolberg edited this page May 7, 2022 · 3 revisions

Only two function are available so far, but more will follow.

min

Return the smaller value of the two provided values.

var c = min(a, b);

max

Return the greater value of the two provided values.

var c = max(a, b);