Number.halfAdjust()
Â
The Number.halfAdjust() API allows you half adjust or round a numeric value to a specific number of decimal positions.
Parameters
Numeric value
Number of decimals in result value
Return Value
Rounded value
Example
pjs.define("num", { type: 'packed decimal', length: 15, decimals: 5 });
num = 9.876;
num = Number.halfAdjust(num, 2);
Â
return num;
//9.88
Â