Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Returns the maximum value out of all parameters, where parameters can be any data type, including numbers, strings, or dates.

Examples

var max;
max = pjs.max("x", "y", "z", "a", "b", "c");  // max is "z"
max = pjs.max(3, 2, 1, 99, 98, 97);  // max is 99

 

RPG Equivalent

%MAX()

  • No labels