Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Return Value

Rounded value

...

Example
Code Block
languagejavascript
pjs.define("num", { type: 'packed decimal', length: 15, decimals: 5 });

num = 9.876;
num = Number.halfAdjust(num, 2);
 
return num;
//9.88

...