The Number.halfAdjust function () API allows you half adjust or round a numeric value to a number provided to the functionspecific number of decimal positions.
Parameters
- NumberNumeric value
- Number of decimals in result value
Return Value
Rounded value
...
Example
Code Block | ||
---|---|---|
| ||
pjs.define("num", { type: 'packed decimal', length: 15, decimals: 5 }); num = 9.876; num = Number.halfAjusthalfAdjust(num, 2); return num; //9.88 |
...