The Number.halfAdjust function allows you half adjust or round a number provided to the function.
Parameters
- Number
- Number of decimals in result value
Examples
pjs.define("num", { type: 'packed decimal', length: 15, decimals: 5 }); num = 9.876; num = Number.halfAjust(num, 2); return num; //9.88